Bandcamp to Spotify
Searches Spotify for an album on Bandcamp
Apa itu Bandcamp to Spotify?
Bandcamp to Spotify adalah ekstensi Chrome yang dikembangkan oleh hdaniel1, dan fitur utamanya adalah "Searches Spotify for an album on Bandcamp".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Bandcamp to Spotify
Unduh file ekstensi Bandcamp to Spotify dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Quickly searches Spotify for an album / artist combination from Bandcamp.
Informasi Dasar Ekstensi
Nama | |
ID | jidagjanelgimifhmmpocnppmodololk |
URL Resmi | https://chrome.google.com/webstore/detail/bandcamp-to-spotify/jidagjanelgimifhmmpocnppmodololk |
Deskripsi | Searches Spotify for an album on Bandcamp |
Ukuran File | 6.35 KB |
Jumlah Instalasi | 43 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2019-07-14 |
Tanggal Publikasi | 2019-07-14 |
Pengembang | hdaniel1 |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |