forked from melink14/rikaikun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
45 lines (38 loc) · 1.06 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
{
"manifest_version": 2,
"name": "Kanji Magic",
"version": "0.10.1",
"default_locale": "vi",
"description": "Translate Japanese by hovering over words, draw Kanji stroke with order. [A port of rikaikun for chrome.]",
"icons": {
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"permissions": [
"tabs",
"clipboardWrite",
"storage"
],
"background": {
"page": "background.html",
"persistent": true
},
"browser_action": {
"default_icon": "images/ba.png"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"content_scripts": [{
"matches": ["http://*/*", "https://*/*", "ftp://*/*", "file:///*"],
"js": ["rikaicontent.js", "lib/jquery-1.7.1.min.js", "lib/raphael-min.js", "lib/kanji-viewer.js"],
"all_frames": true
}],
"web_accessible_resources": [
"css/popup-black.css",
"css/popup-blue.css",
"css/popup-lightblue.css",
"css/popup-yellow.css"
]
}