forked from KanCraft/kanColleWidget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
67 lines (67 loc) · 1.45 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"manifest_version": 2,
"name": "艦これウィジェット",
"version": "3.0.14",
"version_name": "3.0.14",
"description": "「艦これ」をほどよく快適にたのしく遊べるようにするやつです",
"permissions": [
"tabs",
"storage",
"downloads",
"downloads.shelf",
"<all_urls>",
"webRequest",
"notifications",
"unlimitedStorage"
],
"icons": {
"16": "dest/img/app/icon.16.png",
"48": "dest/img/app/icon.48.png",
"128": "dest/img/app/icon.128.png"
},
"background": {
"scripts": [
"dest/js/background.js"
]
},
"browser_action": {
"default_popup": "dest/html/popup.html"
},
"content_scripts": [
{
"matches": [
"http://www.dmm.com/netgame/social/-/gadgets/=/app_id=854854/"
],
"js": [
"dest/js/dmm.js"
]
},
{
"matches": [
"http://*/kcs2/index.php?*"
],
"all_frames": true,
"js": [
"dest/js/kcs2.js"
]
}
],
"options_page": "/dest/html/options.html",
"web_accessible_resources": [
"/dest/img/mute.svg",
"/dest/img/unmute.svg",
"/dest/img/camera.svg"
],
"commands": {
"screenshot": {
"description": "プレイ画面のスクショを撮ります",
"suggested_key": {
"windows": "Ctrl+Shift+0",
"mac": "Command+Shift+0",
"chromeos": "Ctrl+Shift+0",
"linux": "Ctrl+Shift+0"
},
"global": true
}
}
}