UATranslit
Transliterate from Latin (English) alphabet to Ukrainian as you type. Use F4 to switch to Ukrainian while in a text field.
Cos'è UATranslit?
UATranslit è un'estensione di Chrome sviluppata da Andrew Soltis, e la sua funzione principale è "Transliterate from Latin (English) alphabet to Ukrainian as you type. Use F4 to switch to Ukrainian while in a text field.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione UATranslit
Scarica i file di estensione UATranslit in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 -> шоди) Слава Україні!
Informazioni di Base sull'Estensione
Nome | UATranslit |
ID | fehfmcdbkclihpnfhpodklcndphgnjjm |
URL Ufficiale | https://chromewebstore.google.com/detail/uatranslit/fehfmcdbkclihpnfhpodklcndphgnjjm |
Descrizione | Transliterate from Latin (English) alphabet to Ukrainian as you type. Use F4 to switch to Ukrainian while in a text field. |
Dimensione del File | 41.5 KB |
Conteggio Installazioni | 28 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2014-05-21 |
Data di Pubblicazione | 2014-05-21 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | Andrew Soltis |
Tipo di Pagamento | free |
Lingue Supportate | 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:\/\/*\/*" ] } |