Murdaroff - The Smart Transliterator

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

Was ist Murdaroff - The Smart Transliterator?

Murdaroff - The Smart Transliterator ist eine Chrome-Erweiterung, die von dejo entwickelt wurde, und ihr Hauptmerkmal ist "This extension autocorrects as you type Bulgarian and English words written with the incorrect keyboard input method (layout).".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Murdaroff - The Smart Transliterator-Erweiterungs-CRX-Datei herunterladen

Laden Sie Murdaroff - The Smart Transliterator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Murdaroff - The Smart Transliterator Murdaroff - The Smart Transliterator
ID cgcgjpklfadfjcnnhmochjloidpjaopi
Offizielle URL https://chromewebstore.google.com/detail/murdaroff-the-smart-trans/cgcgjpklfadfjcnnhmochjloidpjaopi
Beschreibung This extension autocorrects as you type Bulgarian and English words written with the incorrect keyboard input method (layout).
Dateigröße 1.86 MB
Installationsanzahl 10
Aktuelle Version 0.1.12
Letztes Update 2016-02-13
Veröffentlichungsdatum 2016-02-13
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler dejo
Zahlungsart free
Erweiterungswebsite https://github.com/denislav/Murdaroff
Hilfeseite URL https://github.com/denislav/Murdaroff/issues
Unterstützte Sprachen 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
}