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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Bandcamp Volume Control एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ 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"
    ]
}