Bandcamp Volume Control
Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains.
什么是Bandcamp Volume Control?
Bandcamp Volume Control是由xnaas开发的Chrome扩展程序,该扩展的主要功能是“Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains.”。
扩展截图
下载Bandcamp Volume Control扩展crx文件
下载Bandcamp Volume Control扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension adds a volume slider to album and song pages on the bandcamp domain and some bandcamp sites using custom domains (such as music.monstercat.com). See screenshots for examples. Original extension: https://addons.mozilla.org/en-US/firefox/addon/bandcamp-player-volume-control/ Original GitLab repo: https://gitlab.com/markoooo/bandcamp-volume-control This extension's github repo: https://github.com/xnaas/bcvc
扩展基本信息
名称 | |
ID | pbbndlbppenfhgnkkcmkcmeodbfkgimf |
官方URL | https://chrome.google.com/webstore/detail/bandcamp-volume-control/pbbndlbppenfhgnkkcmkcmeodbfkgimf |
简介 | Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains. |
文件大小 | 8.22 KB |
安装次数 | 618 |
当前版本 | 0.2.7 |
更新时间 | 2021-01-06 |
上架时间 | 2021-01-02 |
评分 | 4.50/5 共10次评分 |
开发者 | xnaas |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/xnaas/bcvc |
帮助页面URL | https://github.com/xnaas/bcvc/issues |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Bandcamp Volume Control", "description": "Adds a volume slider to bandcamp album\/song pages on the official bandcamp domain and some bandcamp sites with custom domains.", "version": "0.2.7", "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.bandcamp.com\/*", "https:\/\/music.monstercat.com\/*", "https:\/\/shop.attackthemusic.com\/*", "https:\/\/listen.20buckspin.com\/*" ], "js": [ "content.js" ], "all_frames": true } ], "permissions": [ "storage" ] } |