Umlauter: automatically add Umlauts

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

What is Umlauter: automatically add Umlauts?

Umlauter: automatically add Umlauts is a Chrome extension developed by Florian, and its main feature is "Corrects common German transcriptions like ue to the proper Umlaut ü.".

Extension Screenshots

screenshot

Download Umlauter: automatically add Umlauts Extension CRX File

Download Umlauter: automatically add Umlauts extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Umlauter: automatically add Umlauts Umlauter: automatically add Umlauts
ID cpehjdejapmgcjcpcgambppnekfnjiaj
Official URL https://chromewebstore.google.com/detail/umlauter-automatically-ad/cpehjdejapmgcjcpcgambppnekfnjiaj
Description Corrects common German transcriptions like ue to the proper Umlaut ü.
File Size 54.08 KB
Installation Count 195
Current Version 0.0.11
Last Updated 2018-07-01
Publish Date 2018-07-01
Rating 3.00/5 Total 4 Ratings
Developer Florian
Email [email protected]
Payment Type free
Extension Website https://github.com/jaflo/umlauter
Help Page URL https://github.com/jaflo/umlauter/issues/new
Supported Languages 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
        }
    ]
}