-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
49 lines (47 loc) · 1.44 KB
/
manifest.json
File metadata and controls
49 lines (47 loc) · 1.44 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
47
48
49
{
"manifest_version": 2,
"name": "YOUTUBE QUEUE",
"description": "Queue and control your youtube videos and keep the performance. Queues your Youtube videos with a click or the search bar in the app",
"version": "6.7.6",
"permissions": [
"https://www.youtube.com/*",
"contextMenus",
"background",
"storage",
"tabs"
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Q",
"mac": "Ctrl+Q"
}
},
"playpause": {
"suggested_key": {
"default": "Ctrl+Shift+Q",
"mac": "Ctrl+Shift+Q"
},
"description": "Play or pause current video.",
"global": true
}
},
"icons": {
"128": "images/icon1.png"
},
"browser_action": {
"default_popup": "popup.html"
},
"background": {
"scripts": ["background.js"]
},
"content_security_policy": "script-src 'self' 'unsafe-eval' https://www.gstatic.com/ https://ajax.googleapis.com https://*.firebaseio.com https://www.googleapis.com/ https://apis.google.com; object-src 'self'",
"content_scripts": [{
"matches": ["https://www.youtube.com/*"],
"css": ["contentCSS.css"],
"js": ["arrive.min.js","content.js"]
}],
"web_accessible_resources": [
"images/*"
]
}