-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
44 lines (40 loc) · 1.09 KB
/
manifest.json
File metadata and controls
44 lines (40 loc) · 1.09 KB
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
42
43
44
{
/****************************************************************************
* Meta-information
*/
"name": "Porn*",
"description": "Opens all domains tagged as Pornography (by OpenDNS) or user specified tag in incognito mode",
"version": "0.1",
"manifest_version": 2,
"options_page": "src/options.html",
/****************************************************************************
* Icons
*/
"icons": {
"16": "icons/16.png",
"19": "icons/19.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
/****************************************************************************
* Browser Action:
*/
"browser_action": {
"default_icon": "icons/19.png"
},
/****************************************************************************
* Background Page:
*/
"background": {
"scripts": [ "src/background.js" ]
},
/****************************************************************************
* Permissions:
*/
"permissions": [
"storage",
"tabs",
"http://domain.opendns.com/*",
"http://*/*"
]
}