Bandcamp Volume

Adds a volume slider to most pages on bandcamp.com

什麼是Bandcamp Volume?

Bandcamp Volume是由Zak "Ubercow" Kristjanson開發的Chrome擴展程式,該擴展的主要功能是“Adds a volume slider to most pages on bandcamp.com”。

擴展截圖

screenshot
screenshot

下載Bandcamp Volume擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}