Umlauter: automatically add Umlauts

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

Umlauter: automatically add Umlauts là gì?

Umlauter: automatically add Umlauts là một tiện ích mở rộng Chrome được phát triển bởi Florian, và tính năng chính của nó là "Corrects common German transcriptions like ue to the proper Umlaut ü.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Umlauter: automatically add Umlauts

Tải xuống các tệp mở rộng Umlauter: automatically add Umlauts dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Umlauter: automatically add Umlauts Umlauter: automatically add Umlauts
ID cpehjdejapmgcjcpcgambppnekfnjiaj
URL Chính Thức https://chromewebstore.google.com/detail/umlauter-automatically-ad/cpehjdejapmgcjcpcgambppnekfnjiaj
Mô tả Corrects common German transcriptions like ue to the proper Umlaut ü.
Kích Thước Tệp 54.08 KB
Số Lần Cài Đặt 195
Phiên Bản Hiện Tại 0.0.11
Cập Nhật Lần Cuối 2018-07-01
Ngày Phát Hành 2018-07-01
Đánh Giá 3.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Florian
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jaflo/umlauter
URL Trang Trợ Giúp https://github.com/jaflo/umlauter/issues/new
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}