Bandcamp+

Add multiple features to bandcamp.com

Bandcamp+란 무엇입니까?

Bandcamp+은(는) Bamdad에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add multiple features to bandcamp.com"입니다.

확장 프로그램 스크린샷

screenshot

Bandcamp+ 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        📖 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"
        ]
    }
}