-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
44 lines (44 loc) · 1.39 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
{
"author": "JohnyP e.a.",
"name": "YT Nonstop",
"description": "No more 'Video paused. Continue watching?' confirmation box! And with two extra options: 1) disable autoplay; 2) loop playlist.",
"homepage_url": "https://github.com/JohnyP36/YT-Nonstop",
"icons": {
"16": "images/ext16.png",
"32": "images/ext32.png",
"48": "images/ext48.png",
"128": "images/ext128.png"
},
"action": {
"default_icon": {
"128": "images/ext128.png",
"16": "images/ext16.png",
"32": "images/ext32.png",
"48": "images/ext48.png"
},
"default_popup": "popup1.3.2.html"
},
"options_ui": {
"open_in_tab": true,
"page": "popup1.3.2.html"
},
"incognito": "split",
"manifest_version": 3,
"background": {
"service_worker": "js/background.js"
},
"content_scripts": [ {
"js": [ "js/script.js" ],
"matches": [ "*://www.youtube.com/*", "*://music.youtube.com/*" ],
"run_at": "document_end"
} ],
"web_accessible_resources": [
{
"resources": [ "js/autoconfirm.js", "js/autoplay+loop.js" ],
"matches": [ "*://www.youtube.com/*", "*://music.youtube.com/*" ]
}
],
"permissions": [ "declarativeContent", "storage", "tabs" ],
"host_permissions": [ "*://www.youtube.com/*", "*://music.youtube.com/*" ],
"version": "2.0.9"
}