-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
63 lines (59 loc) · 1.57 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"manifest_version": 2,
"name": "Youtube shortcuts",
"description": "This extension helps you to control a Youtube video using shortcuts.",
"version": "1.0",
"background": {
"scripts": ["popup.js"],
"persistent": true
},
"commands": {
"prev-track": {
"suggested_key": {
"default": "Ctrl+Shift+7",
"mac": "Command+Shift+7"
},
"description": "Previous Track",
"global": true
},
"play-pause-track": {
"suggested_key": {
"default": "Ctrl+Shift+8",
"mac": "Command+Shift+8"
},
"description": "Play/Pause-Repeat Track",
"global": true
},
"next-track": {
"suggested_key": {
"default": "Ctrl+Shift+9",
"mac": "Command+Shift+9"
},
"description": "Next Track",
"global": true
},
"skip-ads": {
"suggested_key": {
"default": "Ctrl+Shift+6",
"mac": "Command+Shift+6"
},
"description": "Skip Ads",
"global": true
}
},
"icons": { "16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png" },
"browser_action": {
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"tabs",
"*://www.youtube.com/*",
"notifications"
],
"web_accessible_resources": [
"icon48.png"
]
}