forked from Deskbot/No-Playlist-Autoplay-For-YouTube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
39 lines (38 loc) · 866 Bytes
/
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
{
"manifest_version": 2,
"author": "Thomas Richards",
"background": {
"persistent": false,
"scripts": [ "background.js" ]
},
"browser_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_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+Y"
}
}
},
"content_scripts": [
{
"matches": ["*://*.youtube.com/*"],
"js": ["content.js"],
"run_at": "document_end"
}
],
"description": "Allows the user to turn off/on autoplay for playlists on YouTube.",
"icons": {
"128": "icons/Logo-128.png"
},
"name": "No Playlist Autoplay For YouTube",
"options_page": "options.html",
"permissions": ["storage", "*://*.youtube.com/*"],
"version": "65535.65535.65535.5"
}