UATranslit
Transliterate from Latin (English) alphabet to Ukrainian as you type. Use F4 to switch to Ukrainian while in a text field.
Hvad er UATranslit?
UATranslit er en Chrome-udvidelse udviklet af Andrew Soltis, og dens hovedfunktion er "Transliterate from Latin (English) alphabet to Ukrainian as you type. Use F4 to switch to Ukrainian while in a text field.".
Udvidelsesskærmbilleder
Download UATranslit-udvidelses-CRX-fil
Download UATranslit-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 -> шоди)
Слава Україні! Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | fehfmcdbkclihpnfhpodklcndphgnjjm |
| Officiel URL | https://chromewebstore.google.com/detail/uatranslit/fehfmcdbkclihpnfhpodklcndphgnjjm |
| Beskrivelse | Transliterate from Latin (English) alphabet to Ukrainian as you type. Use F4 to switch to Ukrainian while in a text field. |
| Filstørrelse | 41.5 KB |
| Antal Installationer | 28 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2014-05-21 |
| Udgivelsesdato | 2014-05-21 |
| Bedømmelse | 5.00/5 Samlet 3 Bedømmelser |
| Udvikler | Andrew Soltis |
| Betalingsmetode | free |
| Understøttede Sprog | 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:\/\/*\/*"
]
} | |