-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmanifest.json
38 lines (38 loc) · 1.23 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
{
"background": {
"scripts": ["hotkey_storage.js","background.js"],
"persistent": false
},
"browser_action": {
"default_icon": "images/icon_19.png",
"default_popup": "popup.html",
"default_title": "__MSG_default_title__"
},
"content_scripts": [ {
"css": [ "style.css" ],
"js": [ "page.js", "shortcut.js"],
"matches": [ "http://*/*", "https://*/*", "ftp://*/*", "file://*/*" ],
"run_at": "document_end"
}, {
"js": [ "isLoad.js" ],
"matches": [ "http://*/*", "https://*/*", "ftp://*/*", "file://*/*" ],
"run_at": "document_start"
} ],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"default_locale": "en",
"description": "__MSG_description__",
"icons": {
"128": "images/icon_128.png",
"16": "images/icon_16.png",
"19": "images/icon_19.png",
"32": "images/icon_32.png",
"48": "images/icon_48.png"
},
"manifest_version": 2,
"name": "__MSG_name__",
"options_page": "options.html",
"permissions": [ "tabs", "http://*/*", "https://*/*","<all_urls>", "storage" ],
"version": "1.1.2",
"short_name": "CC Analyzer",
"web_accessible_resources": [ "page_context.js", "style.css" ]
}