-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
87 lines (76 loc) · 1.81 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"manifest_version": 2,
"name": "MiniPlay",
"short_name": "MiniPlay",
"description": "Control Google Music, Pandora, and Spotify with a popup and keyboard shortcuts.",
"version": "0.7.3",
"icons": {
"16": "img/icon-16.png",
"48": "img/icon-48.png",
"128": "img/icon-128.png" },
"author": "Jeff Chen",
"homepage_url": "https://github.com/iambald/MiniPlay",
"background": {
"page": "background.html"
},
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"browser_action": {
"default_icon": {
"19": "img/icon-19.png",
"38": "img/icon-38.png"
},
"default_title": "MiniPlay",
"default_popup": "popup.html"
},
"permissions": [
"notifications",
"storage",
"tabs",
"*://play.google.com/music*",
"*://*.pandora.com/*",
"*://songza.com/*",
"*://play.spotify.com/*"
],
"content_scripts": [
{
"matches": ["*://play.google.com/music*", "*://*.pandora.com/*", "*://songza.com/*", "*://play.spotify.com/*"],
"js": ["scripts/loader.js"]
}
],
"options_page": "options.html",
"commands": {
"play": {
"suggested_key": {
"default": "MediaPlayPause"
},
"description": "Play/Pause",
"global": true
},
"ff": {
"suggested_key": {
"default": "MediaNextTrack"
},
"description": "Play next song",
"global": true
},
"rew": {
"suggested_key": {
"default": "MediaPrevTrack"
},
"description": "Play previous song",
"global": true
},
"up": {
"description": "Thumbs up"
},
"down": {
"description": "Thumbs down"
},
"shuffle": {
"description": "Shuffle songs"
},
"repeat": {
"description": "Repeat songs"
}
}
}