Chromesthesia
Find out what song is playing in a tab
Chromesthesia là gì?
Chromesthesia là một tiện ích mở rộng Chrome được phát triển bởi Mattias Wadman, và tính năng chính của nó là "Find out what song is playing in a tab".
Ả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 Chromesthesia
Tải xuống các tệp mở rộng Chromesthesia 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
Captures the audio playing in a tab and sends it to audio recognition services. Currently these services are supported: audD - No account required. 10 requests free per day. ACRCloud - Requires an account but there is a free plan. AudioTag - Requires an account but there is a free plan.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Chromesthesia |
ID | gocpionhjoififoliaelkfheedcafgin |
URL Chính Thức | https://chromewebstore.google.com/detail/chromesthesia/gocpionhjoififoliaelkfheedcafgin |
Mô tả | Find out what song is playing in a tab |
Kích Thước Tệp | 71.58 KB |
Số Lần Cài Đặt | 4,255 |
Phiên Bản Hiện Tại | 0.15 |
Cập Nhật Lần Cuối | 2021-02-09 |
Ngày Phát Hành | 2019-11-03 |
Đánh Giá | 4.03/5 Tổng số 29 Đánh Giá |
Nhà Phát Triển | Mattias Wadman |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/wader/chromesthesia |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Chromesthesia", "description": "Find out what song is playing in a tab", "version": "0.15", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "homepage_url": "https:\/\/github.com\/wader\/chromesthesia", "permissions": [ "storage", "tabCapture", "http:\/\/*.acrcloud.com\/", "https:\/\/*.acrcloud.com\/", "https:\/\/api.audd.io\/", "https:\/\/audiotag.info\/" ], "background": { "scripts": [ "defaultOptions.js", "arraySet.js", "state.js", "dom.js", "libshine.js", "captureAudio.js", "promiseUtils.js", "acrCloud.js", "audD.js", "audioTag.js", "dummyMatch.js", "matchers.js", "background.js" ] }, "page_action": { "default_popup": "pageAction.html", "default_icon": { "19": "icons\/icon19.png", "38": "icons\/icon38.png" } }, "options_ui": { "page": "options.html", "chrome_style": true } } |