Redirect all valid URL to Spotify Desktop App
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",
"name": "__MSG_ext_name__",
"short_name": "__MSG_ext_short_name__",
"description": "__MSG_ext_description__",
"version": "0.0.5",
"manifest_version": 2,
"author": "Chimildic",
"default_locale": "en",
"permissions": [
"storage",
"*://open.spotify.com/*"
],
"background": {
"scripts": [
"/script/background/background.js",
"/script/background/utils.js",
"/script/background/options.js",
"/script/background/request.js"
],
"persistent": true
},
"icons": {
"16": "/logo/icon16.png",
"24": "/logo/icon24.png",
"32": "/logo/icon32.png",
"64": "/logo/icon64.png",
"128": "/logo/icon128.png",
"256": "/logo/icon256.png",
"512": "/logo/icon512.png"
},
"homepage_url": "https://github.com/Chimildic/open-spotify-desktop"
}