Chromesthesia
Find out what song is playing in a tab
Qu'est-ce que Chromesthesia ?
Chromesthesia est une extension Chrome développée par Mattias Wadman, et sa fonction principale est "Find out what song is playing in a tab".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Chromesthesia
Téléchargez les fichiers d'extension Chromesthesia au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Chromesthesia |
ID | gocpionhjoififoliaelkfheedcafgin |
URL Officiel | https://chromewebstore.google.com/detail/chromesthesia/gocpionhjoififoliaelkfheedcafgin |
Description | Find out what song is playing in a tab |
Taille du Fichier | 71.58 KB |
Nombre d'Installations | 4,255 |
Version Actuelle | 0.15 |
Dernière Mise à Jour | 2021-02-09 |
Date de Publication | 2019-11-03 |
Évaluation | 4.03/5 Total 29 Évaluations |
Développeur | Mattias Wadman |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/wader/chromesthesia |
Langues Prises en Charge | 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 } } |