Murdaroff - The Smart Transliterator

This extension autocorrects as you type Bulgarian and English words written with the incorrect keyboard input method (layout).

O que é Murdaroff - The Smart Transliterator?

Murdaroff - The Smart Transliterator é uma extensão do Chrome desenvolvida por dejo, e sua principal característica é "This extension autocorrects as you type Bulgarian and English words written with the incorrect keyboard input method (layout).".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Murdaroff - The Smart Transliterator

Baixe arquivos de extensão Murdaroff - The Smart Transliterator 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

                        For example:
[goda -> ядога
цлотх -> cloth

Ctrl+Shift+Space - Undo transliteration

If you type a Bulgarian word with English input the extension will transliterate from English keyboard to Bulgarian keyboard. The same works for English words written with Bulgarian keyboard input.

The extension is named after prof.Vladko Mudaroff, a famous expert in bulgarian language and host of TV show 'Ezik moy'(Language mine) on Bulgarian National Television.

The extension is open source and free. For more information visit the development page:
https://github.com/denislav/Murdaroff                    

Informações Básicas da Extensão

Nome Murdaroff - The Smart Transliterator Murdaroff - The Smart Transliterator
ID cgcgjpklfadfjcnnhmochjloidpjaopi
URL Oficial https://chromewebstore.google.com/detail/murdaroff-the-smart-trans/cgcgjpklfadfjcnnhmochjloidpjaopi
Descrição This extension autocorrects as you type Bulgarian and English words written with the incorrect keyboard input method (layout).
Tamanho do Arquivo 1.86 MB
Contagem de Instalações 10
Versão Atual 0.1.12
Última Atualização 2016-02-13
Data de Publicação 2016-02-13
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor dejo
Tipo de Pagamento free
Site da Extensão https://github.com/denislav/Murdaroff
URL da Página de Ajuda https://github.com/denislav/Murdaroff/issues
Idiomas Suportados bg
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Murdaroff - The Smart Transliterator",
    "short_name": "Murdaroff",
    "version": "0.1.12",
    "author": "Denislav Savkov",
    "description": "This extension autocorrects as you type Bulgarian and English words written with the incorrect keyboard input method (layout).",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "vladko.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab",
        "background",
        "tabs",
        "",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "offline_enabled": false
}