blob: c6ca1a0363e749ced3ea6e7a90024dbeb51aeb96 [file] [log] [blame]
avm9996304def3e2016-11-27 22:53:05 +01001{
2 "version": "5.2",
3 "version_name": "5.2 beta",
4 "name": "__MSG_name__",
5 "description": "__MSG_description__",
6 "background": {
7 "page": "background.html",
8 "persistent": false
9 },
10 "browser_action": {
11 "default_icon": "images/icon_19.png",
12 "default_title": "__MSG_default_title__",
13 "default_popup": "popup.html"
14 },
15 "content_scripts": [ {
16 "matches": ["http://*/*", "https://*/*", "ftp://*/*", "file://*/*"],
17 "js": ["js/page.js", "js/shortcut.js"],
18 "css": ["style.css"],
19 "run_at": "document_end"
20 }, {
21 "matches": ["http://*/*", "https://*/*", "ftp://*/*", "file://*/*"],
22 "js": ["js/isLoad.js"],
23 "run_at": "document_start"
24 }
25 ],
26 "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
27 "default_locale": "en",
28 "icons": {
29 "16": "images/icon_16.png",
30 "19": "images/icon_19.png",
31 "32": "images/icon_32.png",
32 "48": "images/icon_48.png",
33 "128": "images/icon_128.png"
34 },
35 "manifest_version": 2,
36 "options_page": "options.html",
37 "permissions": ["tabs", "<all_urls>"],
38 "web_accessible_resources": [
39 "js/page_context.js",
40 "style.css"
41 ]
42}