-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
61 lines (61 loc) · 1.25 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"description": "Enables you to remove chatter from the chat using various different identifiers, phrases or simply a display name",
"manifest_version": 2,
"name": "Block Twitch Content",
"version": "133.6",
"icons": {
"256": "icons/icon-e.png"
},
"browser_action": {
"default_area": "navbar",
"default_title": "Block Twitch Content",
"default_icon": {
"256": "icons/icon-e.png"
}
},
"permissions": [
"tabs",
"activeTab",
"storage",
"webRequest",
"webRequestBlocking",
"declarativeNetRequestWithHostAccess",
"https://*.twitch.tv/*"
],
"background": {
"scripts": [
"js/moduleBackground.js"
],
"type": "module"
},
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"256": "icons/icon-e.png"
},
"show_matches": [
"https://*.twitch.tv/*"
]
},
"content_scripts": [
{
"matches": [
"https://*.twitch.tv/*"
],
"js": [
"js/moduleContent.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"strict_min_version": "126.0",
"id": "[email protected]"
}
},
"options_ui": {
"page": "options.html",
"browser_style": true
},
"options_page": "view.html"
}