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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}