Bandcamp to Spotify
Searches Spotify for an album on Bandcamp
Bandcamp to Spotifyとは何ですか?
Bandcamp to Spotifyはhdaniel1によって開発されたChromeの拡張機能で、その主な機能は「Searches Spotify for an album on Bandcamp」です。
拡張機能のスクリーンショット
Bandcamp to Spotify拡張機能のCRXファイルをダウンロード
Bandcamp to Spotify拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Quickly searches Spotify for an album / artist combination from Bandcamp.
拡張機能の基本情報
名前 | |
ID | jidagjanelgimifhmmpocnppmodololk |
公式URL | https://chrome.google.com/webstore/detail/bandcamp-to-spotify/jidagjanelgimifhmmpocnppmodololk |
説明 | Searches Spotify for an album on Bandcamp |
ファイルサイズ | 6.35 KB |
インストール数 | 43 |
現在のバージョン | 1.0 |
最終更新日 | 2019-07-14 |
公開日 | 2019-07-14 |
開発者 | hdaniel1 |
支払い方法 | free |
対応言語 | 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" ] } |