Umlauter: automatically add Umlauts

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

Τι είναι το Umlauter: automatically add Umlauts;

Το Umlauter: automatically add Umlauts είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Florian, και η κύρια λειτουργία του είναι "Corrects common German transcriptions like ue to the proper Umlaut ü.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Umlauter: automatically add Umlauts

Λήψη αρχείων επέκτασης Umlauter: automatically add Umlauts σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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
        }
    ]
}