UATranslit
Transliterate from Latin (English) alphabet to Ukrainian as you type. Use F4 to switch to Ukrainian while in a text field.
UATranslitคืออะไร?
UATranslit เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Andrew Soltis และคุณลักษณะหลักของมันคือ "Transliterate from Latin (English) alphabet to Ukrainian as you type. Use F4 to switch to Ukrainian while in a text field."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย UATranslit
ดาวน์โหลดไฟล์ส่วนขยาย UATranslit ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Press F4 in most text fields to start typing in Ukrainian. Some of the tricky letters: ji -> ї je -> є ju -> ю ch -> ч zh -> ж sh -> ш w -> щ ' -> ь q -> ' Use plus sign if you need prevent compound letters: s+hody -> сходи (instead of shody -> шоди) Слава Україні!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | UATranslit |
ID | fehfmcdbkclihpnfhpodklcndphgnjjm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/uatranslit/fehfmcdbkclihpnfhpodklcndphgnjjm |
คำอธิบาย | Transliterate from Latin (English) alphabet to Ukrainian as you type. Use F4 to switch to Ukrainian while in a text field. |
ขนาดไฟล์ | 41.5 KB |
จำนวนการติดตั้ง | 28 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2014-05-21 |
วันที่เผยแพร่ | 2014-05-21 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Andrew Soltis |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "UATranslit", "version": "1.0", "description": "Transliterate from Latin (English) alphabet to Ukrainian as you type. Use F4 to switch to Ukrainian while in a text field.", "background": { "scripts": [ "\/code\/utranslit.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "\/code\/ContentScript.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "icons": { "128": "img\/icon_128.png", "48": "img\/icon_48.png" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |