forked from ververcpp/ChaZD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
56 lines (47 loc) · 1.16 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
{
"manifest_version": 2,
"name": "ChaZD",
"version": "0.8.19",
"description": "ChaZD 查字典,简洁易用的英汉字典扩展程序,支持划词哦:)",
"permissions": [
"https://dict.youdao.com/*",
"https://fanyi.youdao.com/*",
"http://dict.youdao.com/*",
"http://fanyi.youdao.com/*",
"contextMenus",
"tabs",
"storage",
"notifications"
],
"options_page": "options.html",
"background": {
"persistent": true,
"scripts": [ "public/js/utility.min.js", "public/js/background.min.js" ]
},
"content_scripts": [ {
"all_frames": true,
"css": ["public/css/inPage.min.css"],
"js": ["public/js/utility.min.js", "public/js/selection.min.js"],
"matches": ["<all_urls>"]
} ],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"38": "icons/icon38.png",
"19": "icons/icon19.png"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "MacCtrl+Shift+F"
}
}
}
}