-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
46 lines (46 loc) · 965 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
42
43
44
45
46
{
"manifest_version": 2,
"name": "BetBlocker",
"version": "1.0.1",
"description": "Block bet websites.",
"icons": {
"16": "images/icon-16-on.png",
"48": "images/icon-48-on.png",
"128": "images/icon-128-on.png"
},
"browser_action": {
"default_icon": {
"16": "images/icon-16-on.png",
"48": "images/icon-48-on.png",
"128": "images/icon-128-on.png"
},
"default_title": "BetBlocker",
"default_popup": "popup.html"
},
"author": {
"email": "eduardorigom@gmail.com"
},
"background": {
"scripts": [
"scripts/background.js"
],
"persistent": false
},
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"browser_style": false,
"chrome_style": false,
"open_in_tab": true
},
"permissions": [
"https://*/*",
"http://*/*",
"downloads",
"storage",
"webNavigation"
],
"web_accessible_resources": [
"blocked.json"
]
}