Bandcamp to Spotify

Searches Spotify for an album on Bandcamp

Vad är Bandcamp to Spotify?

Bandcamp to Spotify är en Chrome-tillägg utvecklad av hdaniel1, och dess huvudfunktion är "Searches Spotify for an album on Bandcamp".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Bandcamp to Spotify-förlängningens CRX-fil

Ladda ner Bandcamp to Spotify-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Bandcamp to Spotify Bandcamp to Spotify
ID jidagjanelgimifhmmpocnppmodololk
Officiell webbadress https://chrome.google.com/webstore/detail/bandcamp-to-spotify/jidagjanelgimifhmmpocnppmodololk
Beskrivning Searches Spotify for an album on Bandcamp
Filstorlek 6.35 KB
Antal Installationer 43
Aktuell Version 1.0
Senast Uppdaterad 2019-07-14
Publiceringsdatum 2019-07-14
Utvecklare hdaniel1
Betalningssätt free
Stödda Språk 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"
    ]
}