UATranslit
Transliterate from Latin (English) alphabet to Ukrainian as you type. Use F4 to switch to Ukrainian while in a text field.
UATranslitとは何ですか?
UATranslitはAndrew Soltisによって開発されたChromeの拡張機能で、その主な機能は「Transliterate from Latin (English) alphabet to Ukrainian as you type. Use F4 to switch to Ukrainian while in a text field.」です。
拡張機能のスクリーンショット
UATranslit拡張機能のCRXファイルをダウンロード
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 -> шоди)
Слава Україні! 拡張機能の基本情報
| 名前 | |
| 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:\/\/*\/*"
]
} | |