Chromesthesia

Find out what song is playing in a tab

Was ist Chromesthesia?

Chromesthesia ist eine Chrome-Erweiterung, die von Mattias Wadman entwickelt wurde, und ihr Hauptmerkmal ist "Find out what song is playing in a tab".

Erweiterungsscreenshots

screenshot

Chromesthesia-Erweiterungs-CRX-Datei herunterladen

Laden Sie Chromesthesia-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Chromesthesia Chromesthesia
ID gocpionhjoififoliaelkfheedcafgin
Offizielle URL https://chromewebstore.google.com/detail/chromesthesia/gocpionhjoififoliaelkfheedcafgin
Beschreibung Find out what song is playing in a tab
Dateigröße 71.58 KB
Installationsanzahl 4,255
Aktuelle Version 0.15
Letztes Update 2021-02-09
Veröffentlichungsdatum 2019-11-03
Bewertung 4.03/5 Insgesamt 29 Bewertungen
Entwickler Mattias Wadman
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/wader/chromesthesia
Unterstützte Sprachen 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
    }
}