-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·54 lines (50 loc) · 1.06 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
{
"manifest_version": 2,
"name": "YouTube",
"short_name": "YouTube",
"version": "1.1.2",
"minimum_chrome_version": "38",
"permissions": [
"https://youtube.com/",
"https://*.youtube.com/",
"webview",
"notifications",
"storage" ],
"author": "matthewdias",
"description": "YouTube all nice and boxed up.",
"icons": {
"16": "assets/icon_16.png",
"32": "assets/icon_32.png",
"128": "assets/icon_128.png",
"256": "assets/icon_256.png",
"512": "assets/icon_512.png"
},
"app": {
"background": {
"scripts": ["background.js"]
}
},
"commands": {
"pause": {
"suggested_key": {
"default": "MediaPlayPause"
},
"description": "Play/Pause",
"global": true
},
"next": {
"suggested_key": {
"default": "MediaNextTrack"
},
"description": "Next Song",
"global": true
},
"previous": {
"suggested_key": {
"default": "MediaPrevTrack"
},
"description": "Previous Song",
"global": true
}
}
}