Murdaroff - The Smart Transliterator

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

Murdaroff - The Smart Transliterator란 무엇입니까?

Murdaroff - The Smart Transliterator은(는) dejo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension autocorrects as you type Bulgarian and English words written with the incorrect keyboard input method (layout)."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Murdaroff - The Smart Transliterator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Murdaroff - The Smart Transliterator Murdaroff - The Smart Transliterator
ID cgcgjpklfadfjcnnhmochjloidpjaopi
공식 URL https://chromewebstore.google.com/detail/murdaroff-the-smart-trans/cgcgjpklfadfjcnnhmochjloidpjaopi
설명 This extension autocorrects as you type Bulgarian and English words written with the incorrect keyboard input method (layout).
파일 크기 1.86 MB
설치 횟수 10
현재 버전 0.1.12
최근 업데이트 2016-02-13
출시 날짜 2016-02-13
평점 5.00/5 총 2 개의 평점
개발자 dejo
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/denislav/Murdaroff
도움말 페이지 URL https://github.com/denislav/Murdaroff/issues
지원되는 언어 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
}