-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
43 lines (36 loc) · 867 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,
"version": "0.6",
"name": "SuperStop",
"author": "Gavin Sharp",
"description": "Stop active animations, videos, JS timers, WebSockets and XHR requests with a single key press.",
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "57.0"
}
},
"permissions": ["storage", "<all_urls>"],
"options_ui": {
"page": "settings.html",
"browser_style": true
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [{
"matches": ["<all_urls>"],
"all_frames": true,
"match_about_blank": true,
"run_at": "document_start",
"js": ["content-script.js"]
}],
"icons": {
"16": "icons/superstop16.png",
"32": "icons/superstop32.png",
"48": "icons/superstop48.png",
"96": "icons/superstop96.png",
"128": "icons/superstop128.png"
},
"browser_action": {}
}