-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
29 lines (26 loc) · 864 Bytes
/
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
{
"name": "Google Music Applet",
"version": "1.1",
"description": "Lightweight music playback controls and now playing information for Google Music Beta created by Kyle Kamperschroer",
"homepage_url" : "https://chrome.google.com/webstore/detail/fjiolbglibkahkipcdgeepdfdgfkdbee?hl=en-US",
"browser_action": {
"default_icon": "images/icon48.png",
"popup": "html/background.html",
"default_title": "Music Beta Player Applet"
},
"content_scripts": [
{
"matches" : ["*://music.google.com/*"],
"js" : ["js/jquery.js"],
"run_at" : "document_start"
},
{
"matches" : ["*://music.google.com/*"],
"js" : ["js/contentscript.js"]
}
],
"permissions": [
"tabs",
"*://music.google.com/*"
]
}