Duolingo Unicode Normalizer

Automatically normalizes Duolingo answers and dictionary searches.

Was ist Duolingo Unicode Normalizer?

Duolingo Unicode Normalizer ist eine Chrome-Erweiterung, die von blmage entwickelt wurde, und ihr Hauptmerkmal ist "Automatically normalizes Duolingo answers and dictionary searches.".

Erweiterungsscreenshots

screenshot

Duolingo Unicode Normalizer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Duolingo Unicode Normalizer-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

                        Duolingo expects answers and word searches to be NFC-normalized strings (see the Unicode Normalization FAQ here: http://unicode.org/faq/normalization.html).

But, depending on the input method, those values may contain decomposed characters, making them internally different from their normalized versions.

For example, the Vietnamese word một (one) can be written in (at least) 3 different ways:
một : m \u1ED9 t (NFC)
một : m \u00F4 \u0323 t (VN keyboard)
một : mo \u0323 \u0302 t (NFD)

The extension aims to prevent false positives in typo detection and fix word searches by automatically normalizing relevant inputs.                    

Grundlegende Informationen zur Erweiterung

Name Duolingo Unicode Normalizer Duolingo Unicode Normalizer
ID faikjkggoclbeabkigadengajchidand
Offizielle URL https://chromewebstore.google.com/detail/duolingo-unicode-normaliz/faikjkggoclbeabkigadengajchidand
Beschreibung Automatically normalizes Duolingo answers and dictionary searches.
Dateigröße 14 KB
Installationsanzahl 91
Aktuelle Version 1.5
Letztes Update 2023-04-06
Veröffentlichungsdatum 2019-09-07
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler blmage
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/blmage/duolingo-unicode-normalizer
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Duolingo Unicode Normalizer",
    "version": "1.5",
    "description": "Automatically normalizes Duolingo answers and dictionary searches.",
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "https:\/\/*.duolingo.com\/"
    ],
    "options_ui": {
        "page": "popup\/options.html",
        "open_in_tab": false
    },
    "background": {
        "persistent": true,
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.duolingo.com\/*"
            ],
            "js": [
                "src\/options.js",
                "src\/content.js"
            ]
        }
    ],
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "manifest_version": 2
}