-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathmanifest.json
35 lines (35 loc) · 1.63 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
{
"manifest_version": 2,
"name": "Last.fm free music player",
"version": "2.9.700",
"description": "!! Yes it plays music! Browser as a music player? Why not? Free music player for Google Chrome with Last.fm integration.",
"icons": {
"128": "lastfm_128.png"
},
"default_locale": "en",
"browser_action": {
"default_icon": "lastfm_128.png",
"default_title": "Last.fm free music player",
"default_popup": "popup.html"
},
"content_scripts": [ {
"css": [ "css/mp3_player_button.css", "css/style.css" ],
"js": [ "javascript/content_scripts/manager.js", "javascript/content_scripts/content_script.js" ],
"matches": [ "http://*.last.fm/*", "http://*.lastfm.ru/*","http://*.lastfm.pt/*", "http://*.lastfm.de/*", "http://*.lastfm.es/*", "http://*.lastfm.fr/*", "http://*.lastfm.it/*", "http://*.lastfm.jp/*", "http://*.lastfm.pl/*", "http://*.lastfm.com.br/*", "http://*.lastfm.se/*", "http://*.lastfm.com.tr/*"]
},
{
"js": ["javascript/lastfm_auth_callback.js"],
"matches": ["http://ya.ru/white*"]
},
{
"js": ["javascript/jquery.min.js", "javascript/hotkeys.js"],
"matches": ["http://*/*", "https://*/*"]
}
],
"background": {
"page":"background.html"
},
"options_page": "options.html",
"permissions": ["notifications", "tabs", "http://*/", "https://*/"],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com/ga.js https://www.google.com/buzz/api/button.js https://static.addtoany.com/menu/page.js https://gumroad.com/js/gumroad-button.js https://gumroad.com/js/gumroad-button.js; object-src 'self'; "
}