Bandcamp to Spotify
Searches Spotify for an album on Bandcamp
What is Bandcamp to Spotify?
Bandcamp to Spotify is a Chrome extension developed by hdaniel1, and its main feature is "Searches Spotify for an album on Bandcamp".
Extension Screenshots
Download Bandcamp to Spotify Extension CRX File
Download Bandcamp to Spotify extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Quickly searches Spotify for an album / artist combination from Bandcamp.
Extension Basic Information
Name | |
ID | jidagjanelgimifhmmpocnppmodololk |
Official URL | https://chrome.google.com/webstore/detail/bandcamp-to-spotify/jidagjanelgimifhmmpocnppmodololk |
Description | Searches Spotify for an album on Bandcamp |
File Size | 6.35 KB |
Installation Count | 43 |
Current Version | 1.0 |
Last Updated | 2019-07-14 |
Publish Date | 2019-07-14 |
Developer | hdaniel1 |
Payment Type | free |
Supported Languages | 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" ] } |