Bandcamp Tempo Adjust
A browser extension to detect and adjust track tempo on Bandcamp
Bandcamp Tempo Adjust là gì?
Bandcamp Tempo Adjust là một tiện ích mở rộng Chrome được phát triển bởi miseryconfusion, và tính năng chính của nó là "A browser extension to detect and adjust track tempo on Bandcamp".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Bandcamp Tempo Adjust
Tải xuống các tệp mở rộng Bandcamp Tempo Adjust 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
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.).
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Bandcamp Tempo Adjust |
ID | iniomjoihcjgakkfaebmcbnhmiobppel |
URL Chính Thức | https://chromewebstore.google.com/detail/bandcamp-tempo-adjust/iniomjoihcjgakkfaebmcbnhmiobppel |
Mô tả | A browser extension to detect and adjust track tempo on Bandcamp |
Kích Thước Tệp | 193 KB |
Số Lần Cài Đặt | 5,000 |
Phiên Bản Hiện Tại | 0.5.0 |
Cập Nhật Lần Cuối | 2024-02-19 |
Ngày Phát Hành | 2022-12-10 |
Đánh Giá | 5.00/5 Tổng số 22 Đánh Giá |
Nhà Phát Triển | miseryconfusion |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/azarbayejani/bandcamp-tempo-adjust |
URL Trang Trợ Giúp | https://github.com/azarbayejani/bandcamp-tempo-adjust/issues |
Ngôn Ngữ Được Hỗ Trợ | 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": [] } ] } |