-
Notifications
You must be signed in to change notification settings - Fork 104
/
manifest.json
36 lines (36 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
{
"background": {
"persistent": true,
"scripts": [ "background.js" ]
},
"content_scripts": [ {
"js": [ "indicator.js" ],
"matches": [ "<all_urls>"]
},
{
"js": [ "t.js" ],
"matches": [ "http://*/*" ],
"run_at": "document_start"
}],
"browser_action": {
"default_icon": {
"19": "icon19.png",
"38": "icon38.png"
},
"default_popup": "popup.html",
"default_title": "__MSG_extName__"
},
"default_locale": "en",
"description": "__MSG_extDesc__",
"icons": {
"128": "icon128.png"
},
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"offline_enabled": true,
"manifest_version": 2,
"name": "__MSG_extName__",
"optional_permissions": [ "management" ],
"permissions": ["downloads", "downloads.open","downloads.shelf","clipboardWrite","clipboardRead","notifications","activeTab"],
"web_accessible_resources": [ "icons/startd.png","icons/startdr.png"],
"version": "6.6.9"
}