Bandcamp+
Add multiple features to bandcamp.com
What is Bandcamp+?
Bandcamp+ is a Chrome extension developed by Bamdad, and its main feature is "Add multiple features to bandcamp.com".
Extension Screenshots
Download Bandcamp+ Extension CRX File
Download Bandcamp+ extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
📖 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
Extension Basic Information
Name | Bandcamp+ |
ID | hggjmjobahhmbmnfndhdgidchhhhjkad |
Official URL | https://chromewebstore.google.com/detail/bandcamp+/hggjmjobahhmbmnfndhdgidchhhhjkad |
Description | Add multiple features to bandcamp.com |
File Size | 18.09 KB |
Installation Count | 312 |
Current Version | 3.2.4 |
Last Updated | 2023-08-25 |
Publish Date | 2021-10-31 |
Rating | 4.80/5 Total 5 Ratings |
Developer | Bamdad |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/bamdadsabbagh/bandcamp-plus--extension |
Help Page URL | https://github.com/bamdadsabbagh/bandcamp-plus--extension/issues |
Privacy Policy Page URL | https://github.com/bamdadsabbagh/bamdadsabbagh/wiki/Privacy-Policy |
Supported Languages | 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" ] } } |