Umlauter: automatically add Umlauts

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

O que é Umlauter: automatically add Umlauts?

Umlauter: automatically add Umlauts é uma extensão do Chrome desenvolvida por Florian, e sua principal característica é "Corrects common German transcriptions like ue to the proper Umlaut ü.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Umlauter: automatically add Umlauts

Baixe arquivos de extensão Umlauter: automatically add Umlauts no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Umlauter: automatically add Umlauts Umlauter: automatically add Umlauts
ID cpehjdejapmgcjcpcgambppnekfnjiaj
URL Oficial https://chromewebstore.google.com/detail/umlauter-automatically-ad/cpehjdejapmgcjcpcgambppnekfnjiaj
Descrição Corrects common German transcriptions like ue to the proper Umlaut ü.
Tamanho do Arquivo 54.08 KB
Contagem de Instalações 195
Versão Atual 0.0.11
Última Atualização 2018-07-01
Data de Publicação 2018-07-01
Classificação 3.00/5 Total de 4 Avaliações
Desenvolvedor Florian
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/jaflo/umlauter
URL da Página de Ajuda https://github.com/jaflo/umlauter/issues/new
Idiomas Suportados 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
        }
    ]
}