Chromesthesia
Find out what song is playing in a tab
Cos'è Chromesthesia?
Chromesthesia è un'estensione di Chrome sviluppata da Mattias Wadman, e la sua funzione principale è "Find out what song is playing in a tab".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Chromesthesia
Scarica i file di estensione Chromesthesia in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Chromesthesia |
ID | gocpionhjoififoliaelkfheedcafgin |
URL Ufficiale | https://chromewebstore.google.com/detail/chromesthesia/gocpionhjoififoliaelkfheedcafgin |
Descrizione | Find out what song is playing in a tab |
Dimensione del File | 71.58 KB |
Conteggio Installazioni | 4,255 |
Versione Corrente | 0.15 |
Ultimo Aggiornamento | 2021-02-09 |
Data di Pubblicazione | 2019-11-03 |
Valutazione | 4.03/5 Totale 29 Valutazioni |
Sviluppatore | Mattias Wadman |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/wader/chromesthesia |
Lingue Supportate | 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 } } |