Inspect and view changes in Offline Tool for Spotify source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"version": "1.2",
"name": "__MSG_extName__",
"description": "__MSG_extDesc__",
"default_locale": "en",
"browser_action": {
"default_icon": "/img/icon_16.png",
"default_title": "__MSG_extName__"
},
"minimum_chrome_version": "45.0",
"background": {
"scripts": [
"/js/jquery.js",
"/js/jszip.min.js",
"/js/FileSaver.js",
"/js/jszip_utils.js",
"/js/utils.js",
"/js/background.js"
]
},
"content_scripts": [
{
"js": [
"/js/jquery.js",
"/js/jszip.min.js",
"/js/FileSaver.js",
"/js/jszip_utils.js",
"/js/utils.js",
"/js/spotify.js"
],
"css": [
"/css/spotify.css"
],
"matches": [
"*://open.spotify.com/*"
]
}
],
"icons": {
"128": "/img/icon_128.png",
"256": "/img/icon_256.png"
},
"permissions": [
"tabs",
"storage",
"downloads",
"<all_urls>",
"webRequest",
"webRequestBlocking",
"cookies"
],
"web_accessible_resources": [
"css/*",
"img/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}