forked from antimatter15/Google-Music-Applet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
86 lines (86 loc) · 2.7 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
{
"browser_action": {
"default_icon": "/images/icon48.png",
"default_title": "Musicality",
"default_popup": "/html/popup.html"
},
"content_scripts": [
{
"js":
[
"/js/tp/jquery.js", "/js/contentscript/contentscript.js"
],
"matches":
[
"https://*/*",
"http://*/*"
],
"run_at": "document_start"
}
],
"background": {
"page" : "/html/background.html"
},
"options_page" : "/html/options.html",
"description": "Enhance your music experience across the web! Easy access to controls, keyboard shortcuts and much more!",
"homepage_url": "https://chrome.google.com/webstore/detail/musicality-music-player/fjiolbglibkahkipcdgeepdfdgfkdbee",
"icons": {
"250": "/images/icon250.png",
"128": "/images/icon128.png",
"76": "/iamges/icon/76.png",
"48": "/images/icon48.png",
"38": "/images/icon76.png",
"19": "/images/icon19.png",
"16": "/images/icon16.png"
},
"name": "Musicality Music Player",
"permissions":
[
"tabs",
"storage",
"http://*/*",
"https://*/*",
"notifications"
],
"commands" : {
"toggle-feature-play-pause" : {
"suggested_key" : {
"default" : "MediaPlayPause"
},
"description" : "Toggle Play/Pause",
"global": true
},
"toggle-feature-next-track" : {
"suggested_key" : {
"default" : "MediaNextTrack"
},
"description" : "Next Track",
"global": true
},
"toggle-feature-prev-track" : {
"suggested_key" : {
"default" : "MediaPrevTrack"
},
"description" : "Previous Track",
"global": true
},
"toggle-feature-thumbs-up" : {
"description" : "Toggle Thumbs Up"
},
"toggle-feature-thumbs-down" : {
"description" : "Toggle Thumbs Down"
},
"toggle-feature-shuffle" : {
"description" : "Toggle Shuffle State"
},
"toggle-feature-repeat" : {
"description" : "Toggle Repeat State"
}
},
"update_url": "http://clients2.google.com/service/update2/crx",
"version": "3.0.16",
"manifest_version": 2,
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com https://apis.google.com; object-src 'self'",
"author": "Kyle Kamperschroer",
"short_name" : "Musicality"
}