-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
41 lines (41 loc) · 937 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
{
"name": "Mass Unfollow on Twitch",
"description": "A Chrome extension to Mass Unfollow on Twitch.",
"version": "1.1.1",
"author": {
"name": "Gabriel de Rezende Gonçalves",
"email": "[email protected]",
"url": "https://gabireze.com.br/"
},
"permissions": ["scripting"],
"host_permissions": ["https://*.twitch.tv/*"],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"action": {
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"default_title": "Mass Unfollow on Twitch"
},
"web_accessible_resources": [
{
"resources": ["script.js", "html.css"],
"matches": ["https://*.twitch.tv/*"]
}
],
"content_scripts": [
{
"matches": ["https://*.twitch.tv/*"],
"js": ["script.js"]
}
],
"manifest_version": 3
}