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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dejo และคุณลักษณะหลักของมันคือ "This extension autocorrects as you type Bulgarian and English words written with the incorrect keyboard input method (layout)."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Murdaroff - The Smart Transliterator

ดาวน์โหลดไฟล์ส่วนขยาย Murdaroff - The Smart Transliterator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
}