-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
42 lines (42 loc) · 1.09 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
{
"manifest_version": 3,
"name": "Tab Playlist for YouTube™",
"short_name": "Tab Playlist",
"version": "0.4",
"description": "Lets you make a playlist by simply lining up tabs",
"author": "/u/metarmask",
"icons": {
"128": "images/extension/icon-128.png"
},
"background": {
"service_worker": "service_worker.js"
},
"permissions": [
"storage",
"declarativeContent",
"scripting"
],
"host_permissions": [
"https://www.youtube.com/"
],
"web_accessible_resources": [
{
"resources": [
"content-script-js-accesser.js"
],
"matches": [
"https://www.youtube.com/*"
]
}
],
"options_ui": {
"page": "options.html"
},
"action": {
"default_icon": "images/pageAction/disabled.png",
"default_title": "Click to enable\nWhen a the video finishes with this enabled the next tab will be selected if it's a YouTube one.",
"enabled_icon": "images/pageAction/enabled.png",
"enabled_title": "Click to disable\nWhen this video finishes the tab to the right will be opened"
},
"content_security_policy": {}
}