-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
49 lines (49 loc) · 1.24 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"manifest_version": 2,
"name": "Distraction Blocker",
"description": "Blocks distracting sites to help you stay productive.",
"version": "0.0.1",
"icons": {
"64": "icons/icon.svg"
},
"permissions": [
"<all_urls>",
"storage",
"webRequest",
"webRequestBlocking",
"webNavigation",
"tabs",
"idle"
],
"web_accessible_resources": [
"redirect/index.html",
"options/index.html"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_action": {
"default_icon": {
"16": "icons/dark-symbolic.svg",
"32": "icons/dark-symbolic.svg"
},
"default_title": "Distraction Blocker Quick Settings",
"default_popup": "popup/index.html",
"theme_icons": [
{
"light": "icons/light-symbolic.svg",
"dark": "icons/dark-symbolic.svg",
"size": 16
},
{
"light": "icons/light-symbolic.svg",
"dark": "icons/dark-symbolic.svg",
"size": 32
}
]
},
"options_ui": {
"page": "options/index.html"
}
}