Duolingo Unicode Normalizer
Automatically normalizes Duolingo answers and dictionary searches.
Duolingo Unicode Normalizerとは何ですか?
Duolingo Unicode Normalizerはblmageによって開発されたChromeの拡張機能で、その主な機能は「Automatically normalizes Duolingo answers and dictionary searches.」です。
拡張機能のスクリーンショット
Duolingo Unicode Normalizer拡張機能のCRXファイルをダウンロード
Duolingo Unicode Normalizer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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 } |