-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmanifest_chrome.json
More file actions
46 lines (45 loc) · 1.03 KB
/
Copy pathmanifest_chrome.json
File metadata and controls
46 lines (45 loc) · 1.03 KB
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
{
"manifest_version": 3,
"author": "Thomas Richards",
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_icon": {
"128": "icons/Pause-128.png",
"64": "icons/Pause-64.png",
"32": "icons/Pause-32.png"
},
"default_title": "Toggle YouTube Playlist Autoplay"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+Y"
}
}
},
"content_scripts": [
{
"matches": ["*://*.youtube.com/*"],
"js": ["content.js"],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"matches": ["*://*.youtube.com/*"],
"resources": ["scripts/*.js"]
}
],
"description": "When you finish a video in a playlist, the next video won't start unless you click on it.\nYou can toggle this on and off.",
"icons": {
"128": "icons/Logo-128.png"
},
"name": "No Playlist Autoplay For YouTube",
"options_page": "options.html",
"permissions": ["storage"],
"host_permissions": ["*://*.youtube.com/*"],
"version": "65535.65535.65535.15"
}