Bandcamp Tempo Adjust

A browser extension to detect and adjust track tempo on Bandcamp

Bandcamp Tempo Adjust란 무엇입니까?

Bandcamp Tempo Adjust은(는) miseryconfusion에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A browser extension to detect and adjust track tempo on Bandcamp"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Detect and Adjust the tempo of tracks on Bandcamp

👉 Pick from ±6, ±10, ±16, or WIDE mode.
👉 Click on the percentage to reset the tempo
👉 Detect the BPM of tracks on album pages
👉 Adjust tempo on wishlist / collection page
👉 You're now a DJ!

It also handles some of the more boring parts of DJing, like doing your taxes:

🆕 Export your Bandcamp purchase history

***

Disclaimer: The information provided by Bandcamp Tempo Adjust is provided for informational purposes only and is not intended to and must not be taken as a substitute for obtaining accounting, tax, legal, or other professional advice from a tax resolution professional (e.g, an Enrolled Agent, CPA, attorney, etc.).                    

확장 프로그램 기본 정보

이름 Bandcamp Tempo Adjust Bandcamp Tempo Adjust
ID iniomjoihcjgakkfaebmcbnhmiobppel
공식 URL https://chromewebstore.google.com/detail/bandcamp-tempo-adjust/iniomjoihcjgakkfaebmcbnhmiobppel
설명 A browser extension to detect and adjust track tempo on Bandcamp
파일 크기 193 KB
설치 횟수 5,000
현재 버전 0.5.0
최근 업데이트 2024-02-19
출시 날짜 2022-12-10
평점 5.00/5 총 22 개의 평점
개발자 miseryconfusion
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/azarbayejani/bandcamp-tempo-adjust
도움말 페이지 URL https://github.com/azarbayejani/bandcamp-tempo-adjust/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A browser extension to detect and adjust track tempo on Bandcamp",
    "version": "0.5.0",
    "manifest_version": 3,
    "name": "Bandcamp Tempo Adjust",
    "options_page": "options.html",
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.bandcamp.com\/*",
                "https:\/\/*.bandcamp.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.bundle.js"
    },
    "host_permissions": [
        "https:\/\/*.bcbits.com\/stream\/*"
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ]
}