Bandcamp+

Add multiple features to bandcamp.com

Bandcamp+ là gì?

Bandcamp+ là một tiện ích mở rộng Chrome được phát triển bởi Bamdad, và tính năng chính của nó là "Add multiple features to bandcamp.com".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bandcamp+

Tải xuống các tệp mở rộng Bandcamp+ 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

                        📖 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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Bandcamp+ Bandcamp+
ID hggjmjobahhmbmnfndhdgidchhhhjkad
URL Chính Thức https://chromewebstore.google.com/detail/bandcamp+/hggjmjobahhmbmnfndhdgidchhhhjkad
Mô tả Add multiple features to bandcamp.com
Kích Thước Tệp 18.09 KB
Số Lần Cài Đặt 312
Phiên Bản Hiện Tại 3.2.4
Cập Nhật Lần Cuối 2023-08-25
Ngày Phát Hành 2021-10-31
Đánh Giá 4.80/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Bamdad
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/bamdadsabbagh/bandcamp-plus--extension
URL Trang Trợ Giúp https://github.com/bamdadsabbagh/bandcamp-plus--extension/issues
URL Trang Chính Sách Bảo Mật https://github.com/bamdadsabbagh/bamdadsabbagh/wiki/Privacy-Policy
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}