get music information(top songs) by itunes search api.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "rank-tunes",
"description": "get music information(top songs) by itunes search api.",
"version": "0.2",
"background": {
"scripts": [
"js/jquery-2.0.3.min.js",
"js/background.js"
],
"persistent": true
},
"permissions": [
"storage",
"https://itunes.apple.com/"
],
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"browser_action": {
"default_icon": {
"19": "img/icon48.png",
"38": "img/icon48.png"
},
"default_popup": "popup.html"
},
"content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com; object-src 'self'",
"web_accessible_resources": [
"img/icon128.png"
]
}