UATranslit
Transliterate from Latin (English) alphabet to Ukrainian as you type. Use F4 to switch to Ukrainian while in a text field.
Co to jest UATranslit?
UATranslit to rozszerzenie Chrome opracowane przez Andrew Soltis, a jego główną funkcją jest „Transliterate from Latin (English) alphabet to Ukrainian as you type. Use F4 to switch to Ukrainian while in a text field.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia UATranslit
Pobierz pliki rozszerzeń UATranslit w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 -> шоди)
Слава Україні! Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | fehfmcdbkclihpnfhpodklcndphgnjjm |
| Oficjalny URL | https://chromewebstore.google.com/detail/uatranslit/fehfmcdbkclihpnfhpodklcndphgnjjm |
| Opis | Transliterate from Latin (English) alphabet to Ukrainian as you type. Use F4 to switch to Ukrainian while in a text field. |
| Rozmiar pliku | 41.5 KB |
| Liczba instalacji | 28 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2014-05-21 |
| Data Publikacji | 2014-05-21 |
| Ocena | 5.00/5 Łącznie 3 Oceny |
| Deweloper | Andrew Soltis |
| Typ Płatności | free |
| Obsługiwane Języki | 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:\/\/*\/*"
]
} | |