Bandcamp Volume Control
Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains.
Cos'è Bandcamp Volume Control?
Bandcamp Volume Control è un'estensione di Chrome sviluppata da xnaas, e la sua funzione principale è "Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Bandcamp Volume Control
Scarica i file di estensione Bandcamp Volume Control in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | pbbndlbppenfhgnkkcmkcmeodbfkgimf |
URL Ufficiale | https://chrome.google.com/webstore/detail/bandcamp-volume-control/pbbndlbppenfhgnkkcmkcmeodbfkgimf |
Descrizione | Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains. |
Dimensione del File | 8.22 KB |
Conteggio Installazioni | 618 |
Versione Corrente | 0.2.7 |
Ultimo Aggiornamento | 2021-01-06 |
Data di Pubblicazione | 2021-01-02 |
Valutazione | 4.50/5 Totale 10 Valutazioni |
Sviluppatore | xnaas |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/xnaas/bcvc |
URL della Pagina di Aiuto | https://github.com/xnaas/bcvc/issues |
Lingue Supportate | 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" ] } |