Bandcamp+

Add multiple features to bandcamp.com

Bandcamp+คืออะไร?

Bandcamp+ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bamdad และคุณลักษณะหลักของมันคือ "Add multiple features to bandcamp.com"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bandcamp+

ดาวน์โหลดไฟล์ส่วนขยาย 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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Bandcamp+ Bandcamp+
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"
        ]
    }
}