Bandcamp Volume Control
Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains.
Apa itu Bandcamp Volume Control?
Bandcamp Volume Control adalah ekstensi Chrome yang dikembangkan oleh xnaas, dan fitur utamanya adalah "Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Bandcamp Volume Control
Unduh file ekstensi Bandcamp Volume Control dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | |
ID | pbbndlbppenfhgnkkcmkcmeodbfkgimf |
URL Resmi | https://chrome.google.com/webstore/detail/bandcamp-volume-control/pbbndlbppenfhgnkkcmkcmeodbfkgimf |
Deskripsi | Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains. |
Ukuran File | 8.22 KB |
Jumlah Instalasi | 618 |
Versi Saat Ini | 0.2.7 |
Terakhir Diperbarui | 2021-01-06 |
Tanggal Publikasi | 2021-01-02 |
Penilaian | 4.50/5 Total 10 Penilaian |
Pengembang | xnaas |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/xnaas/bcvc |
URL Halaman Bantuan | https://github.com/xnaas/bcvc/issues |
Bahasa yang Didukung | 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" ] } |