Bandcamp+
Add multiple features to bandcamp.com
Bandcamp+とは何ですか?
Bandcamp+はBamdadによって開発されたChromeの拡張機能で、その主な機能は「Add multiple features to bandcamp.com」です。
拡張機能のスクリーンショット
Bandcamp+拡張機能のCRXファイルをダウンロード
Bandcamp+拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
📖 Features - Arrange Bandcamp layout - Wishlist single tracks from release page - Add volume control - Add speed control with vinyl and stretched modes - Copy track info to clipboard ⌨️ Keyboard Shortcuts `Space` play/pause `C` copy track info `W` wishlist current track `Shift + W` wishlist release `N` next track `P` previous track `Shift + P` play first track `→` seek 10 sec forward `←` seek 10 sec backward `Shift + ←` seek start `↑` increase volume `↓` decrease volume `R` reset volume `Shift + ↑` increase speed `Shift + ↓` decrease speed `Shift + R` reset speed
拡張機能の基本情報
名前 | Bandcamp+ |
ID | hggjmjobahhmbmnfndhdgidchhhhjkad |
公式URL | https://chromewebstore.google.com/detail/bandcamp+/hggjmjobahhmbmnfndhdgidchhhhjkad |
説明 | Add multiple features to bandcamp.com |
ファイルサイズ | 18.09 KB |
インストール数 | 312 |
現在のバージョン | 3.2.4 |
最終更新日 | 2023-08-25 |
公開日 | 2021-10-31 |
評価 | 4.80/5 合計 5 レビュー |
開発者 | Bamdad |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/bamdadsabbagh/bandcamp-plus--extension |
ヘルプページのURL | https://github.com/bamdadsabbagh/bandcamp-plus--extension/issues |
プライバシーポリシーページのURL | https://github.com/bamdadsabbagh/bamdadsabbagh/wiki/Privacy-Policy |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bandcamp+", "short_name": "bandcamp-plus", "description": "Add multiple features to bandcamp.com", "version": "3.2.4", "manifest_version": 2, "icons": { "512": "assets\/bandcamp-plus-icon.png" }, "browser_action": { "default_title": "Bandcamp+", "default_icon": { "512": "assets\/bandcamp-plus-icon.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*.bandcamp.com\/*" ], "js": [ "scripts\/content.js" ], "css": [ "assets\/content.css" ], "run_at": "document_start", "all_frames": false } ], "background": { "scripts": [ "scripts\/background.js" ] } } |