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