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