Hol Dir die Songs von Spotify als lupenreinen MP3-Mitschnitt auf Deine Festplatte!
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",
"author": "Tobit.Software",
"background": {
"page": "background-page/index.html",
"persistent": true
},
"browser_action": {
"default_icon": {
"16": "assets/images/clipinc-16.png",
"32": "assets/images/clipinc-32.png",
"48": "assets/images/clipinc-48.png",
"128": "assets/images/clipinc-128.png"
},
"default_popup": "popup/index.html"
},
"content_scripts": [
{
"css": [
"content/slider.css"
],
"js": [
"content/content.js"
],
"matches": [
"https://open.spotify.com/*"
]
}
],
"default_locale": "de",
"description": "__MSG_description__",
"icons": {
"16": "assets/images/clipinc-16.png",
"32": "assets/images/clipinc-32.png",
"48": "assets/images/clipinc-48.png",
"128": "assets/images/clipinc-128.png"
},
"manifest_version": 2,
"name": "__MSG_name__",
"permissions": [
"tabs",
"tabCapture",
"activeTab",
"storage",
"downloads",
"downloads.shelf",
"notifications"
],
"version": "1.12.12",
"web_accessible_resources": [
"content/inject.js"
]
}