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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    ]
}