Bandcamp to Spotify

Searches Spotify for an album on Bandcamp

Hvad er Bandcamp to Spotify?

Bandcamp to Spotify er en Chrome-udvidelse udviklet af hdaniel1, og dens hovedfunktion er "Searches Spotify for an album on Bandcamp".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Bandcamp to Spotify-udvidelses-CRX-fil

Download Bandcamp to Spotify-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Bandcamp to Spotify Bandcamp to Spotify
ID jidagjanelgimifhmmpocnppmodololk
Officiel URL https://chrome.google.com/webstore/detail/bandcamp-to-spotify/jidagjanelgimifhmmpocnppmodololk
Beskrivelse Searches Spotify for an album on Bandcamp
Filstørrelse 6.35 KB
Antal Installationer 43
Nuværende Version 1.0
Senest Opdateret 2019-07-14
Udgivelsesdato 2019-07-14
Udvikler hdaniel1
Betalingsmetode free
Understøttede Sprog 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"
    ]
}