Bandcamp Volume Control
Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains.
What is Bandcamp Volume Control?
Bandcamp Volume Control is a Chrome extension developed by xnaas, and its main feature is "Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains.".
Extension Screenshots
Download Bandcamp Volume Control Extension CRX File
Download Bandcamp Volume Control 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
This extension adds a volume slider to album and song pages on the bandcamp domain and some bandcamp sites using custom domains (such as music.monstercat.com). See screenshots for examples. Original extension: https://addons.mozilla.org/en-US/firefox/addon/bandcamp-player-volume-control/ Original GitLab repo: https://gitlab.com/markoooo/bandcamp-volume-control This extension's github repo: https://github.com/xnaas/bcvc
Extension Basic Information
Name | |
ID | pbbndlbppenfhgnkkcmkcmeodbfkgimf |
Official URL | https://chrome.google.com/webstore/detail/bandcamp-volume-control/pbbndlbppenfhgnkkcmkcmeodbfkgimf |
Description | Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains. |
File Size | 8.22 KB |
Installation Count | 618 |
Current Version | 0.2.7 |
Last Updated | 2021-01-06 |
Publish Date | 2021-01-02 |
Rating | 4.50/5 Total 10 Ratings |
Developer | xnaas |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/xnaas/bcvc |
Help Page URL | https://github.com/xnaas/bcvc/issues |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Bandcamp Volume Control", "description": "Adds a volume slider to bandcamp album\/song pages on the official bandcamp domain and some bandcamp sites with custom domains.", "version": "0.2.7", "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.bandcamp.com\/*", "https:\/\/music.monstercat.com\/*", "https:\/\/shop.attackthemusic.com\/*", "https:\/\/listen.20buckspin.com\/*" ], "js": [ "content.js" ], "all_frames": true } ], "permissions": [ "storage" ] } |