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」です。
拡張機能のスクリーンショット
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 |
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" ] } ] } |