-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
59 lines (59 loc) · 1.53 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
{
"name": "__MSG_manifestExtName__",
"version": "0.7.2",
"manifest_version": 2,
"applications": {
"gecko": {
"id": "{a2503cd4-4083-4c2f-bef2-37767a569867}"
}
},
"background": {
"scripts": [
// "lib/jquery-3.3.1.min.js",
// "lib/igo.js",
// "lib/zipjs/jsinflate.js",
// "lib/zipjs/sjis.js",
// "lib/zipjs/zip.js",
// "lib/wanakana.js",
// "lib/diff.js",
"common.js",
"background.js"]
},
"content_scripts": [ {
"js": ["kanji_content_detect.js"],
"matches": ["http://*/*", "https://*/*", "file://*/*"],
"all_frames": true
} ],
"default_locale": "en",
"description": "__MSG_manifestExtDescription__",
"icons": { "512": "img/icon_black.svg" },
"options_ui": {
"page": "user_cp/options.html",
"browser_style": true,
"open_in_tab": false
},
"browser_action": {
"default_title": "Toggle furigana",
"default_icon": {
"512": "img/icon_mobile.svg" // For Android only, because Android doens't support`theme_icons
},
"theme_icons": [
{
"light": "img/icon_light.svg",
"dark": "img/icon_dark.svg",
"size": 48
}
]
},
"commands": {
"toggle-furigana": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "Command+Shift+F",
"android": "Ctrl+Shift+F"
},
"description": "Toggle furigana"
}
},
"permissions": ["http://*/*", "https://*/*", "file://*/*", "<all_urls>", "activeTab", "tabs", "storage"]
}