-
Notifications
You must be signed in to change notification settings - Fork 24
/
manifest.json
27 lines (27 loc) · 881 Bytes
/
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
{
"background": {
"scripts": ["options.js", "background.js"]
},
"browser_action": {
"default_icon": "icon_dict.png",
"default_popup": "options.html"
},
"content_scripts": [{
"all_frames": true,
"js": ["speech.js", "lookup.js", "rlog.v1.js"],
"match_about_blank": true,
"matches": ["\u003Call_urls>"],
"run_at": "document_end"
}],
"description": "支持Chrome浏览器的划词翻译",
"icons": {
"128": "icon-128.png",
"64": "icon.png"
},
"manifest_version": 2,
"name": "有道词典Chrome划词插件",
"options_page": "options.html",
"permissions": ["cookies", "*://dict.youdao.com/", "*://.youdao.com/", "*://*.youdao.com/", "\u003Call_urls>"],
"version": "1.55",
"web_accessible_resources": ["ab20.png", "ydd-sprite.png", "speech.png"]
}