Umlauter: automatically add Umlauts

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

Umlauter: automatically add Umlautsとは何ですか?

Umlauter: automatically add UmlautsはFlorianによって開発されたChromeの拡張機能で、その主な機能は「Corrects common German transcriptions like ue to the proper Umlaut ü.」です。

拡張機能のスクリーンショット

screenshot

Umlauter: automatically add Umlauts拡張機能のCRXファイルをダウンロード

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
Eメール [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
        }
    ]
}