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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Transliterate from Latin (English) alphabet to Ukrainian as you type. Use F4 to switch to Ukrainian while in a text field."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में UATranslit एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 -> шоди)

Слава Україні!                    

एक्सटेंशन की मूल जानकारी

नाम UATranslit UATranslit
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:\/\/*\/*"
    ]
}