Bandcamp Volume Control

Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains.

Co je Bandcamp Volume Control?

Bandcamp Volume Control je rozšíření Chrome vyvinuté xnaas, a jeho hlavní funkcí je „Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Bandcamp Volume Control

Stáhněte si soubory rozšíření Bandcamp Volume Control ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Bandcamp Volume Control Bandcamp Volume Control
ID pbbndlbppenfhgnkkcmkcmeodbfkgimf
Oficiální URL https://chrome.google.com/webstore/detail/bandcamp-volume-control/pbbndlbppenfhgnkkcmkcmeodbfkgimf
Popis Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains.
Velikost souboru 8.22 KB
Počet instalací 618
Aktuální Verze 0.2.7
Poslední Aktualizace 2021-01-06
Datum Vydání 2021-01-02
Hodnocení 4.50/5 Celkem 10 Hodnocení
Vývojář xnaas
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/xnaas/bcvc
URL Stránky Nápovědy https://github.com/xnaas/bcvc/issues
Podporované Jazyky 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"
    ]
}