Bandcamp+
Add multiple features to bandcamp.com
什么是Bandcamp+?
Bandcamp+是由Bamdad开发的Chrome扩展程序,该扩展的主要功能是“Add multiple features to bandcamp.com”。
扩展截图
下载Bandcamp+扩展crx文件
下载Bandcamp+扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
📖 Features
- Arrange Bandcamp layout
- Wishlist single tracks from release page
- Add volume control
- Add speed control with vinyl and stretched modes
- Copy track info to clipboard
⌨️ Keyboard Shortcuts
`Space` play/pause
`C` copy track info
`W` wishlist current track
`Shift + W` wishlist release
`N` next track
`P` previous track
`Shift + P` play first track
`→` seek 10 sec forward
`←` seek 10 sec backward
`Shift + ←` seek start
`↑` increase volume
`↓` decrease volume
`R` reset volume
`Shift + ↑` increase speed
`Shift + ↓` decrease speed
`Shift + R` reset speed 扩展基本信息
| 名称 | |
| ID | hggjmjobahhmbmnfndhdgidchhhhjkad |
| 官方URL | https://chromewebstore.google.com/detail/bandcamp+/hggjmjobahhmbmnfndhdgidchhhhjkad |
| 简介 | Add multiple features to bandcamp.com |
| 文件大小 | 18.09 KB |
| 安装次数 | 312 |
| 当前版本 | 3.2.4 |
| 更新时间 | 2023-08-25 |
| 上架时间 | 2021-10-31 |
| 评分 | 4.80/5 共5次评分 |
| 开发者 | Bamdad |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/bamdadsabbagh/bandcamp-plus--extension |
| 帮助页面URL | https://github.com/bamdadsabbagh/bandcamp-plus--extension/issues |
| 隐私政策页面URL | https://github.com/bamdadsabbagh/bamdadsabbagh/wiki/Privacy-Policy |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Bandcamp+",
"short_name": "bandcamp-plus",
"description": "Add multiple features to bandcamp.com",
"version": "3.2.4",
"manifest_version": 2,
"icons": {
"512": "assets\/bandcamp-plus-icon.png"
},
"browser_action": {
"default_title": "Bandcamp+",
"default_icon": {
"512": "assets\/bandcamp-plus-icon.png"
}
},
"content_scripts": [
{
"matches": [
"*:\/\/*.bandcamp.com\/*"
],
"js": [
"scripts\/content.js"
],
"css": [
"assets\/content.css"
],
"run_at": "document_start",
"all_frames": false
}
],
"background": {
"scripts": [
"scripts\/background.js"
]
}
} | |