-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmanifest.json
44 lines (43 loc) · 1.21 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
{
"name": "Music Plus for Google Play Music",
"version": "0.4.13",
"manifest_version": 2,
"description": "Music Plus adds controls, notifications, Last.fm support, downloading, global keyboard shortcuts, and lyrics to Google Play Music.",
"icons": { "16" : "images/music_plus.16.png",
"48" : "images/music_plus.48.png",
"96" : "images/music_plus.96.png"},
"homepage_url": "http://adampash.com/",
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"css": ["styles/mystyles.css"],
"run_at": "document_end",
"js": [
"scripts/jquery-2.0.js",
"scripts/jquery.hotkeys.js",
"scripts/contentChange.js",
"scripts/track.js",
"scripts/lyrics.js",
"scripts/myscript.js",
"scripts/shortcuts.js",
"scripts/scrobble.js"
]
}
],
"background":
{
"page": "background.html"
},
"permissions": [
"history",
"tabs",
"<all_urls>",
"notifications"
],
"browser_action": {
"default_icon": "images/music_plus.rounded.34.png",
"default_title": "Google Play Music",
"default_popup": "popup.html"
},
"options_page": "options.html"
}