Bandcamp to Spotify
Searches Spotify for an album on Bandcamp
Was ist Bandcamp to Spotify?
Bandcamp to Spotify ist eine Chrome-Erweiterung, die von hdaniel1 entwickelt wurde, und ihr Hauptmerkmal ist "Searches Spotify for an album on Bandcamp".
Erweiterungsscreenshots
Bandcamp to Spotify-Erweiterungs-CRX-Datei herunterladen
Laden Sie Bandcamp to Spotify-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Quickly searches Spotify for an album / artist combination from Bandcamp.
Grundlegende Informationen zur Erweiterung
Name | |
ID | jidagjanelgimifhmmpocnppmodololk |
Offizielle URL | https://chrome.google.com/webstore/detail/bandcamp-to-spotify/jidagjanelgimifhmmpocnppmodololk |
Beschreibung | Searches Spotify for an album on Bandcamp |
Dateigröße | 6.35 KB |
Installationsanzahl | 43 |
Aktuelle Version | 1.0 |
Letztes Update | 2019-07-14 |
Veröffentlichungsdatum | 2019-07-14 |
Entwickler | hdaniel1 |
Zahlungsart | free |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Bandcamp to Spotify", "description": "Searches Spotify for an album on Bandcamp", "version": "1.0", "browser_action": { "default_icon": "bc-to-spot-icon.png", "default_title": "Search Spotify?" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.bandcamp.com\/album\/*" ], "js": [ "content.js" ] } ], "permissions": [ "tabs" ] } |