Bandcamp Volume
Adds a volume slider to most pages on bandcamp.com
Bandcamp Volume là gì?
Bandcamp Volume là một tiện ích mở rộng Chrome được phát triển bởi Zak "Ubercow" Kristjanson, và tính năng chính của nó là "Adds a volume slider to most pages on bandcamp.com".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Bandcamp Volume
Tải xuống các tệp mở rộng Bandcamp Volume dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Bandcamp Volume |
ID | nlikaonifbagdlcjoepofomefchkahab |
URL Chính Thức | https://chromewebstore.google.com/detail/bandcamp-volume/nlikaonifbagdlcjoepofomefchkahab |
Mô tả | Adds a volume slider to most pages on bandcamp.com |
Kích Thước Tệp | 37.69 KB |
Số Lần Cài Đặt | 20,000 |
Phiên Bản Hiện Tại | 2.0 |
Cập Nhật Lần Cuối | 2015-10-11 |
Ngày Phát Hành | 2015-10-10 |
Đánh Giá | 4.57/5 Tổng số 241 Đánh Giá |
Nhà Phát Triển | Zak "Ubercow" Kristjanson |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ubercow/bandcamp_volume |
URL Trang Trợ Giúp | https://github.com/ubercow/bandcamp_volume/issues?state=open |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |