forked from kwaschny/unwanted-twitch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.firefox.json
48 lines (48 loc) · 889 Bytes
/
manifest.firefox.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
{
"name": "Unwanted Twitch",
"short_name": "Unwanted TTV",
"version": "23.10.17",
"description": "__MSG_app_Desc__",
"host_permissions": [
"https://www.twitch.tv/"
],
"permissions": [
"storage"
],
"default_locale": "en",
"background": {
"scripts": [ "scripts/background.js" ]
},
"content_scripts": [
{
"matches": [
"https://www.twitch.tv/*"
],
"run_at": "document_start",
"js": [
"scripts/common.js",
"scripts/storage.js",
"scripts/directory.js"
],
"css": [
"styles/directory.css"
]
}
],
"action": {
"default_icon": "images/icon32.png",
"default_popup": "views/popup.html"
},
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"manifest_version": 3,
"browser_specific_settings": {
"gecko": {
"id": "unwanted@twitch.tv"
}
}
}