-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
41 lines (41 loc) · 1004 Bytes
/
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
{
"name": "__MSG_ext_Name__",
"version": "0.0.9",
"manifest_version": 2,
"description": "__MSG_ext_Description__",
"homepage_url": "https://github.com/atwellpub/Nulli-Chrome-Extension",
"icons": {
"16": "icons/icon16.png",
"19": "icons/icon19.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en_US",
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": [
"src/engine/engine.js"
]
}],
"background": {
"scripts": ["src/background/background.js"]
},
"browser_action": {
"default_icon": "icons/icon19.png",
"default_title": "Nulli",
"default_popup": "src/browser_action/index.html"
},
"permissions": [
"contentSettings",
"contextMenus",
"cookies",
"notifications",
"tabs",
"geolocation",
"storage",
"activeTab"
],
"content_security_policy": "script-src 'self' https://www.google-analytics.com/; object-src 'self'"
}