Duolingo Unicode Normalizer
Automatically normalizes Duolingo answers and dictionary searches.
Duolingo Unicode Normalizerคืออะไร?
Duolingo Unicode Normalizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย blmage และคุณลักษณะหลักของมันคือ "Automatically normalizes Duolingo answers and dictionary searches."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Duolingo Unicode Normalizer
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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 } |