Bandcamp to Spotify

Searches Spotify for an album on Bandcamp

Cos'è Bandcamp to Spotify?

Bandcamp to Spotify è un'estensione di Chrome sviluppata da hdaniel1, e la sua funzione principale è "Searches Spotify for an album on Bandcamp".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Bandcamp to Spotify

Scarica i file di estensione Bandcamp to Spotify in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Bandcamp to Spotify Bandcamp to Spotify
ID jidagjanelgimifhmmpocnppmodololk
URL Ufficiale https://chrome.google.com/webstore/detail/bandcamp-to-spotify/jidagjanelgimifhmmpocnppmodololk
Descrizione Searches Spotify for an album on Bandcamp
Dimensione del File 6.35 KB
Conteggio Installazioni 43
Versione Corrente 1.0
Ultimo Aggiornamento 2019-07-14
Data di Pubblicazione 2019-07-14
Sviluppatore hdaniel1
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}