Chromesthesia
Find out what song is playing in a tab
What is Chromesthesia?
Chromesthesia is a Chrome extension developed by Mattias Wadman, and its main feature is "Find out what song is playing in a tab".
Extension Screenshots
Download Chromesthesia Extension CRX File
Download Chromesthesia extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Chromesthesia |
ID | gocpionhjoififoliaelkfheedcafgin |
Official URL | https://chromewebstore.google.com/detail/chromesthesia/gocpionhjoififoliaelkfheedcafgin |
Description | Find out what song is playing in a tab |
File Size | 71.58 KB |
Installation Count | 4,255 |
Current Version | 0.15 |
Last Updated | 2021-02-09 |
Publish Date | 2019-11-03 |
Rating | 4.03/5 Total 29 Ratings |
Developer | Mattias Wadman |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/wader/chromesthesia |
Supported Languages | 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 } } |