-
Notifications
You must be signed in to change notification settings - Fork 8
/
manifest.json
39 lines (39 loc) · 1.06 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
{
"version": "1.0.8",
"default_locale": "en",
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": "images/icon_19.png",
"default_title": "Start capture",
"default_popup": "popup.html"
},
"content_scripts": [ {
"matches": ["http://*/*", "https://*/*", "ftp://*/*", "file://*/*"],
"js": ["js/gif_capture_page.js"],
"css": ["style.css"],
"run_at": "document_end"
}, {
"matches": ["http://*/*", "https://*/*", "ftp://*/*", "file://*/*"],
"js": ["js/isLoad.js"],
"run_at": "document_start"
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"icons": {
"16": "images/icon_16.png",
"19": "images/icon_19.png",
"32": "images/icon_32.png",
"48": "images/icon_48.png"
},
"options_page": "options.html",
"manifest_version": 2,
"permissions": ["tabs", "activeTab", "http://*/*", "https://*/*"],
"web_accessible_resources": [
"js/page_context.js",
"style.css"
]
}