Bandcamp Volume Control

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

Bandcamp Volume Controlとは何ですか?

Bandcamp Volume Controlはxnaasによって開発されたChromeの拡張機能で、その主な機能は「Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains.」です。

拡張機能のスクリーンショット

screenshot

Bandcamp Volume Control拡張機能のCRXファイルをダウンロード

Bandcamp Volume Control拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Bandcamp Volume Control Bandcamp Volume Control
ID pbbndlbppenfhgnkkcmkcmeodbfkgimf
公式URL https://chrome.google.com/webstore/detail/bandcamp-volume-control/pbbndlbppenfhgnkkcmkcmeodbfkgimf
説明 Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains.
ファイルサイズ 8.22 KB
インストール数 618
現在のバージョン 0.2.7
最終更新日 2021-01-06
公開日 2021-01-02
評価 4.50/5 合計 10 レビュー
開発者 xnaas
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/xnaas/bcvc
ヘルプページのURL https://github.com/xnaas/bcvc/issues
対応言語 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"
    ]
}