-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
50 lines (50 loc) · 1.66 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
{
"author": "johns shuxian ([email protected])",
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": {
"128": "ext_icons/icon_128_1.png"
},
"default_popup": "config.html",
"default_title": "划词收藏"
},
"content_scripts": [ {
"js": [
"theme/chrome/js/web-highlighter.min.js",
"theme/chrome/js/jquery.js",
"theme/chrome/js/layer/layer.js",
"theme/chrome/js/content_script.js"
],
"css": [
"theme/chrome/css/css.css",
"theme/chrome/js/layer/theme/default/layer.css",
"theme/chrome/css/menu.css",
"theme/chrome/css/style.css"
],
"matches": ["<all_urls>"],
"run_at": "document_idle"
} ],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"description": "划词添加高亮,方便快捷添加批注",
"icons": {
"128": "ext_icons/icon_128_1.png"
},
"manifest_version": 2,
"name": "Cross Words Highlight 划词高亮",
"options_page": "config.html",
"permissions": [ "contextMenus","storage","unlimitedStorage","activeTab"],
"version": "1.1.3",
"web_accessible_resources": [
"theme/chrome/css/fonts/icons.woff2",
"theme/chrome/css/fonts/icons.eot",
"theme/chrome/css/fonts/icons.woff",
"theme/chrome/css/fonts/icons.ttf",
"theme/chrome/js/layer/theme/default/icon.png",
"theme/chrome/js/layer/theme/default/icon-ext.png",
"theme/chrome/js/layer/theme/default/loading-0.gif",
"theme/chrome/js/layer/theme/default/loading-1.gif",
"theme/chrome/js/layer/theme/default/loading-2.gif"
]
}