Chromesthesia
Find out what song is playing in a tab
Co to jest Chromesthesia?
Chromesthesia to rozszerzenie Chrome opracowane przez Mattias Wadman, a jego główną funkcją jest „Find out what song is playing in a tab”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Chromesthesia
Pobierz pliki rozszerzeń Chromesthesia w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | gocpionhjoififoliaelkfheedcafgin |
| Oficjalny URL | https://chromewebstore.google.com/detail/chromesthesia/gocpionhjoififoliaelkfheedcafgin |
| Opis | Find out what song is playing in a tab |
| Rozmiar pliku | 71.58 KB |
| Liczba instalacji | 4,255 |
| Aktualna Wersja | 0.15 |
| Ostatnia Aktualizacja | 2021-02-09 |
| Data Publikacji | 2019-11-03 |
| Ocena | 4.03/5 Łącznie 29 Oceny |
| Deweloper | Mattias Wadman |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/wader/chromesthesia |
| Obsługiwane Języki | 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
}
} | |