Bandcamp Tempo Adjust
A browser extension to detect and adjust track tempo on Bandcamp
O que é Bandcamp Tempo Adjust?
Bandcamp Tempo Adjust é uma extensão do Chrome desenvolvida por miseryconfusion, e sua principal característica é "A browser extension to detect and adjust track tempo on Bandcamp".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Bandcamp Tempo Adjust
Baixe arquivos de extensão Bandcamp Tempo Adjust no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.).
Informações Básicas da Extensão
Nome | Bandcamp Tempo Adjust |
ID | iniomjoihcjgakkfaebmcbnhmiobppel |
URL Oficial | https://chromewebstore.google.com/detail/bandcamp-tempo-adjust/iniomjoihcjgakkfaebmcbnhmiobppel |
Descrição | A browser extension to detect and adjust track tempo on Bandcamp |
Tamanho do Arquivo | 193 KB |
Contagem de Instalações | 5,000 |
Versão Atual | 0.5.0 |
Última Atualização | 2024-02-19 |
Data de Publicação | 2022-12-10 |
Classificação | 5.00/5 Total de 22 Avaliações |
Desenvolvedor | miseryconfusion |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/azarbayejani/bandcamp-tempo-adjust |
URL da Página de Ajuda | https://github.com/azarbayejani/bandcamp-tempo-adjust/issues |
Idiomas Suportados | 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": [] } ] } |