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 - это расширение Chrome, разработанное xnaas, и его основная функция - "Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Bandcamp Volume Control

Скачайте файлы расширений 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
Электронная почта [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"
    ]
}