Bandcamp Volume

Adds a volume slider to most pages on bandcamp.com

Bandcamp Volume क्या है?

Bandcamp Volume Zak "Ubercow" Kristjanson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a volume slider to most pages on bandcamp.com"।

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

screenshot
screenshot

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

crx प्रारूप में Bandcamp Volume एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        The BIG Version 2.0 update!

Features include:
- Syncing of your volume between pages on a single computer (turn this off in Options)
- A new logo
- New slider layout with Mute functionality
- Slider now works on some homescreen players

Thank you to github.com/roguedarkjedi and https://github.com/josh-bridge for their contributions!

Bandcamp, by default, does not have a volume control on it's player. This extension adds a volume slider to Bandcamp Album pages. You can check out the source code for this extension on github via the website link. This extension is still considered beta and may have issues, if you find one, you can submit a bug report via the Support & FAQ link.                    

एक्सटेंशन की मूल जानकारी

नाम Bandcamp Volume Bandcamp Volume
ID nlikaonifbagdlcjoepofomefchkahab
आधिकारिक URL https://chromewebstore.google.com/detail/bandcamp-volume/nlikaonifbagdlcjoepofomefchkahab
विवरण Adds a volume slider to most pages on bandcamp.com
फ़ाइल का आकार 37.69 KB
स्थापना संख्या 20,000
वर्तमान संस्करण 2.0
अंतिम अपडेट 2015-10-11
प्रकाशन तिथि 2015-10-10
रेटिंग 4.57/5 कुल 241 रेटिंग्स
डेवलपर Zak "Ubercow" Kristjanson
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/ubercow/bandcamp_volume
सहायता पृष्ठ URL https://github.com/ubercow/bandcamp_volume/issues?state=open
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bandcamp Volume",
    "manifest_version": 2,
    "version": "2.0",
    "description": "Adds a volume slider to most pages on bandcamp.com",
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "icons": {
        "32": "images\/logos\/logo_32.png",
        "64": "images\/logos\/logo_64.png",
        "128": "images\/logos\/logo_128.png"
    },
    "web_accessible_resources": [
        "fonts\/*.*",
        "images\/icons\/*.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.bandcamp.com\/*"
            ],
            "css": [
                "css\/style.css"
            ],
            "js": [
                "scripts\/volume.js"
            ]
        }
    ]
}