forked from HaloWordApp/haloword
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
46 lines (42 loc) · 1.07 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
{
"name": "Halo Word Dictionary",
"short_name": "Halo Word",
"version": "0.6.9",
"manifest_version": 2,
"description": "精巧易用的英汉字典,界面简洁舒适。包含单词表、划词查询、右键查询等功能。Enjoy!",
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png",
"256": "icon-256.png"
},
"app": {
"launch": {
"local_path": "main.html"
}
},
"background": {
"page": "background.html"
},
"content_scripts": [ {
"js": [ "include/jquery.min.js", "include/jquery-ui.min.js", "include/common.js", "include/lookup.js" ],
"css": [ "style/lookup.css" ],
"matches": [ "<all_urls>" ],
"all_frames": true
} ],
"minimum_chrome_version": "20",
"omnibox": { "keyword" : "halo" },
"permissions": [
"<all_urls>",
"unlimitedStorage",
"storage",
"contextMenus",
"tabs"
],
"web_accessible_resources": [
"img/icon.svg",
"main.html"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}