Bandcamp Volume

Adds a volume slider to most pages on bandcamp.com

ما هو Bandcamp Volume؟

Bandcamp Volume هو إضافة Chrome تم تطويرها بواسطة Zak "Ubercow" Kristjanson، والميزة الرئيسية لها هي "Adds a volume slider to most pages on bandcamp.com".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Bandcamp Volume

قم بتنزيل ملفات الامتداد Bandcamp Volume بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
            ]
        }
    ]
}