Bandcamp to Spotify
Searches Spotify for an album on Bandcamp
Qu'est-ce que Bandcamp to Spotify ?
Bandcamp to Spotify est une extension Chrome développée par hdaniel1, et sa fonction principale est "Searches Spotify for an album on Bandcamp".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Bandcamp to Spotify
Téléchargez les fichiers d'extension Bandcamp to Spotify au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Quickly searches Spotify for an album / artist combination from Bandcamp.
Informations de Base sur l'Extension
Nom | |
ID | jidagjanelgimifhmmpocnppmodololk |
URL Officiel | https://chrome.google.com/webstore/detail/bandcamp-to-spotify/jidagjanelgimifhmmpocnppmodololk |
Description | Searches Spotify for an album on Bandcamp |
Taille du Fichier | 6.35 KB |
Nombre d'Installations | 43 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2019-07-14 |
Date de Publication | 2019-07-14 |
Développeur | hdaniel1 |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |