forked from leezu/zhongwen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
51 lines (51 loc) · 1.75 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
{
"author": "Christian Schiller, Leonard Lausen",
"background": {
"scripts": [ "dict.js", "main.js", "background.js" ]
},
"browser_action": {
"default_icon": "images/zhongwen48.png",
"default_title": "Zhongwen Chinese Popup Dictionary",
"browser_style": true
},
"content_scripts": [ {
"all_frames": true,
"match_about_blank": true,
"js": [ "content.js" ],
"matches": [ "<all_urls>" ]
} ],
"description": "Great tool for learning Chinese. Includes links to Chinese Grammar Wiki. Supports adding words to Skritter. Firefox fork of the Christian Schillers Chrome extension.",
"icons": {
"128": "images/zhongwen.png",
"16": "images/zhongwen16.png",
"48": "images/zhongwen48.png"
},
"homepage_url": "https://github.com/leezu/zhongwen",
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC9kqvX6bQ05nYOOB67oitnTW6arQZbq/nLebcs8f2jwXM7cvZrkNaMtZroysYtDPFIES7yP4/SAsVP4CGKP7z/2o8/BBkqe+8+4Okk5bo23ovpGVSqGlpE63Q58Zkpl6j/GcVpHAlE5thNH7QmBjcAH5ESdt/o2iJaYDbImwthDwIDAQAB",
"manifest_version": 2,
"name": "Zhongwen: Chinese-English Dictionary",
"options_ui": {
"page": "options.html",
"browser_style": true,
"chrome_style": true
},
"permissions": [ "*://*/*", "contextMenus", "storage", "downloads"],
"short_name": "Zhongwen",
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "4.21",
"web_accessible_resources": [ "css/*", "js/*", "images/*" ],
"applications": {
"gecko": {
"id": "{b65c7bc6-846b-4f65-b6ed-099d7e042309}",
"strict_min_version": "55.0"
}
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Z"
},
"description": "Toggle Zhongwen on/off"
}
}
}