Duolingo Unicode Normalizer

Automatically normalizes Duolingo answers and dictionary searches.

Hvad er Duolingo Unicode Normalizer?

Duolingo Unicode Normalizer er en Chrome-udvidelse udviklet af blmage, og dens hovedfunktion er "Automatically normalizes Duolingo answers and dictionary searches.".

Udvidelsesskærmbilleder

screenshot

Download Duolingo Unicode Normalizer-udvidelses-CRX-fil

Download Duolingo Unicode Normalizer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Duolingo Unicode Normalizer Duolingo Unicode Normalizer
ID faikjkggoclbeabkigadengajchidand
Officiel URL https://chromewebstore.google.com/detail/duolingo-unicode-normaliz/faikjkggoclbeabkigadengajchidand
Beskrivelse Automatically normalizes Duolingo answers and dictionary searches.
Filstørrelse 14 KB
Antal Installationer 91
Nuværende Version 1.5
Senest Opdateret 2023-04-06
Udgivelsesdato 2019-09-07
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler blmage
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/blmage/duolingo-unicode-normalizer
Understøttede Sprog 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
}