UATranslit
Transliterate from Latin (English) alphabet to Ukrainian as you type. Use F4 to switch to Ukrainian while in a text field.
O que é UATranslit?
UATranslit é uma extensão do Chrome desenvolvida por Andrew Soltis, e sua principal característica é "Transliterate from Latin (English) alphabet to Ukrainian as you type. Use F4 to switch to Ukrainian while in a text field.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão UATranslit
Baixe arquivos de extensão UATranslit no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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 -> шоди) Слава Україні!
Informações Básicas da Extensão
Nome | UATranslit |
ID | fehfmcdbkclihpnfhpodklcndphgnjjm |
URL Oficial | https://chromewebstore.google.com/detail/uatranslit/fehfmcdbkclihpnfhpodklcndphgnjjm |
Descrição | Transliterate from Latin (English) alphabet to Ukrainian as you type. Use F4 to switch to Ukrainian while in a text field. |
Tamanho do Arquivo | 41.5 KB |
Contagem de Instalações | 28 |
Versão Atual | 1.0 |
Última Atualização | 2014-05-21 |
Data de Publicação | 2014-05-21 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | Andrew Soltis |
Tipo de Pagamento | free |
Idiomas Suportados | 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:\/\/*\/*" ] } |