Bandcamp Tempo Adjust

A browser extension to detect and adjust track tempo on Bandcamp

Bandcamp Tempo Adjust क्या है?

Bandcamp Tempo Adjust miseryconfusion द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A browser extension to detect and adjust track tempo on Bandcamp"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Bandcamp Tempo Adjust एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": []
        }
    ]
}