-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest_firefox.json
51 lines (50 loc) · 1.13 KB
/
manifest_firefox.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,
"author": "Thomas Richards",
"background": {
"scripts": ["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/*"],
"browser_specific_settings": {
"gecko": {
"id": "{c2691771-8d07-4c8e-90d5-162a61747d67}"
}
},
"version": "65535.65535.65535.13"
}