Bandcamp to Spotify

Searches Spotify for an album on Bandcamp

Wat is Bandcamp to Spotify?

Bandcamp to Spotify is een Chrome-extensie ontwikkeld door hdaniel1, en de belangrijkste functie is "Searches Spotify for an album on Bandcamp".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Bandcamp to Spotify

Download Bandcamp to Spotify-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Quickly searches Spotify for an album / artist combination from Bandcamp.                    

Basisinformatie over de Extensie

Naam Bandcamp to Spotify Bandcamp to Spotify
ID jidagjanelgimifhmmpocnppmodololk
Officiële URL https://chrome.google.com/webstore/detail/bandcamp-to-spotify/jidagjanelgimifhmmpocnppmodololk
Beschrijving Searches Spotify for an album on Bandcamp
Bestandsgrootte 6.35 KB
Aantal Installaties 43
Huidige Versie 1.0
Laatst Bijgewerkt 2019-07-14
Publicatiedatum 2019-07-14
Ontwikkelaar hdaniel1
Betalingswijze free
Ondersteunde Talen 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"
    ]
}