Umlauter: automatically add Umlauts

Corrects common German transcriptions like ue to the proper Umlaut ü.

Umlauter: automatically add Umlauts क्या है?

Umlauter: automatically add Umlauts Florian द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Corrects common German transcriptions like ue to the proper Umlaut ü."।

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

screenshot

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

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

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

                        Try typing something like "Kuehe" in a textbox followed by a space or period to see it corrected! Useful when typing German on US-keyboards.

Requires access to websites to correct typing in input boxes. All data is processed locally and is not sent to remote servers!

On computer systems that don't support them, German words like "Erklärung" are often written as "Erklaerung" to avoid the use of diacritic letters. Though this is readable, it looks odd. An easy solution would be to replace all two letter combinations to their proper Umlaut-form and though this fixes 100% of potential words, there are too many false positives (for example the word "neue" would never be written "neü"). This project uses machine learning to predict if a substitution should be made.                    

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

नाम Umlauter: automatically add Umlauts Umlauter: automatically add Umlauts
ID cpehjdejapmgcjcpcgambppnekfnjiaj
आधिकारिक URL https://chromewebstore.google.com/detail/umlauter-automatically-ad/cpehjdejapmgcjcpcgambppnekfnjiaj
विवरण Corrects common German transcriptions like ue to the proper Umlaut ü.
फ़ाइल का आकार 54.08 KB
स्थापना संख्या 195
वर्तमान संस्करण 0.0.11
अंतिम अपडेट 2018-07-01
प्रकाशन तिथि 2018-07-01
रेटिंग 3.00/5 कुल 4 रेटिंग्स
डेवलपर Florian
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/jaflo/umlauter
सहायता पृष्ठ URL https://github.com/jaflo/umlauter/issues/new
समर्थित भाषाएँ de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.11",
    "manifest_version": 2,
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "homepage_url": "https:\/\/github.com\/jaflo\/umlauter",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Umlauter"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/inject.js"
            ],
            "all_frames": true
        }
    ]
}