-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (42 loc) · 972 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
{
"manifest_version": 2,
"name": "Anti-Doomscroll WebExtension",
"version": "0.1.1",
"description": "This extension warns you when you visit websites you've marked as time-wasters.",
"default_locale": "en",
"permissions": [
"tabs",
"storage",
"<all_urls>"
],
"background": {
"scripts": ["dist/background_scripts/background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["dist/content_scripts/content.js"]
}
],
"browser_action": {
"default_icon": "icons/shield-48.png",
"default_popup": "src/popup/popup.html"
},
"icons": {
"16": "icons/shield-16.png",
"48": "icons/shield-48.png",
"128": "icons/shield-128.png"
},
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "42.0"
}
}
}