Duolingo Unicode Normalizer
Automatically normalizes Duolingo answers and dictionary searches.
Duolingo Unicode Normalizer क्या है?
Duolingo Unicode Normalizer blmage द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically normalizes Duolingo answers and dictionary searches."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Duolingo Unicode Normalizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Duolingo Unicode Normalizer |
ID | faikjkggoclbeabkigadengajchidand |
आधिकारिक URL | https://chromewebstore.google.com/detail/duolingo-unicode-normaliz/faikjkggoclbeabkigadengajchidand |
विवरण | Automatically normalizes Duolingo answers and dictionary searches. |
फ़ाइल का आकार | 14 KB |
स्थापना संख्या | 91 |
वर्तमान संस्करण | 1.5 |
अंतिम अपडेट | 2023-04-06 |
प्रकाशन तिथि | 2019-09-07 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | blmage |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/blmage/duolingo-unicode-normalizer |
समर्थित भाषाएँ | 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 } |