-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
51 lines (45 loc) · 1.3 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
{
"manifest_version": 3,
"name": "Resume YouTube Subs",
"short_name": "res-yt-subs",
"description": "Resume your YouTube subscriptions with a single click.",
"homepage_url": "https://github.com/michael-schaller/resume-youtube-subs",
"version": "1.0.4",
"action": {
"default_icon": {
"16": "icon/icon-16.png",
"32": "icon/icon-32.png",
"48": "icon/icon-48.png",
"128": "icon/icon-128.png"
},
"default_title": "Click me to resume your YouTube subscriptions."
},
"icons": {
"16": "icon/icon-16.png",
"32": "icon/icon-32.png",
"48": "icon/icon-48.png",
"128": "icon/icon-128.png"
},
"background": {
"service_worker": "js/service_worker.js",
"type": "module"
},
"permissions": [
"scripting"
],
"host_permissions": [
"https://www.youtube.com/feed/subscriptions"
],
"web_accessible_resources": [
{
"resources": ["icon/icon-128.png"],
"matches": ["https://www.youtube.com/*"],
"use_dynamic_url": true
},
{
"resources": ["animation/loading.svg"],
"matches": ["https://www.youtube.com/*"],
"use_dynamic_url": true
}
]
}