forked from cschiller/zhongwen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
55 lines (55 loc) · 1.2 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
{
"manifest_version": 2,
"name": "Zhongwen: Chinese-English Dictionary",
"short_name": "Zhongwen",
"version": "5.8.0",
"author": "Christian Schiller",
"homepage_url": "https://github.com/cschiller/zhongwen",
"description": "Great tool for learning Chinese. Includes links to Chinese Grammar Wiki. Supports adding words to Skritter.",
"icons": {
"16": "images/zhongwen16.png",
"48": "images/zhongwen48.png",
"128": "images/zhongwen.png"
},
"browser_action": {
"default_icon": "images/zhongwen48.png",
"default_title": "Zhongwen Chinese Popup Dictionary"
},
"background": {
"page": "background.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js/jquery-3.3.1.min.js",
"js/zhuyin.js",
"content.js"
],
"css": [
"css/content.css"
],
"all_frames": true
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"permissions": [
"contextMenus",
"tabs"
],
"commands": {
"_execute_browser_action": {
"description": "Enable/Disable Zhongwen"
}
},
"web_accessible_resources": [
"css/*",
"js/*",
"images/*"
]
}