Korean IME with Romanization Tool

Allows one to type in Korean Hangul and includes a romanization tool.

Korean IME with Romanization Toolคืออะไร?

Korean IME with Romanization Tool เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vincent และคุณลักษณะหลักของมันคือ "Allows one to type in Korean Hangul and includes a romanization tool."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Korean IME with Romanization Tool

ดาวน์โหลดไฟล์ส่วนขยาย Korean IME with Romanization Tool ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Update: now works in Google Docs

This extension allows one to type in Korean (Hangul) without a system-wide IME installed.

To switch between standard and Hangul mode, click the "a/한" icon (the extension icon), or tap the Alt key on the right hand side of the spacebar.

The keyboard layout behaves the same as the Korean keyboard layout (2 Beolsik).

This will work from any type of keyboard (Dvorak/Russian/Azerty, etc.)

Additional features include:
* Right-click on Hangul text and click "Romanize" to get a romanization of the Hangul. This is based on Revised Romanization, but doesn't include some of the complicated rules.
* Moving the cursor to an existing character and pressing Shift+Backspace will re-enter edit mode on that character.

It should work on any input field within a webpage, except Google Chrome Store as extensions are not allowed to run on those pages.

This uses a Korean keyboard layout for the Hangul input, e.g. the letter "A" maps to the letter "ㅁ" which is 'm' in Korean. If you are unfamiliar with the Korean keyboard layout, please Google it.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Korean IME with Romanization Tool Korean IME with Romanization Tool
ID cimmbifnciobjhchpimjekibbndgmkfk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/korean-ime-with-romanizat/cimmbifnciobjhchpimjekibbndgmkfk
คำอธิบาย Allows one to type in Korean Hangul and includes a romanization tool.
ขนาดไฟล์ 31.57 KB
จำนวนการติดตั้ง 7,022
เวอร์ชันปัจจุบัน 2.2.2
อัปเดตครั้งล่าสุด 2020-01-15
วันที่เผยแพร่ 2020-01-11
คะแนน 3.37/5 รวมทั้งหมด 93 คะแนน
ผู้พัฒนา Vincent
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/vmcnabb/korean-ime#readme
ภาษาที่รองรับ en,en-GB,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extension_name__",
    "short_name": "__MSG_extension_short_name__",
    "version": "2.2.2",
    "default_locale": "en",
    "description": "__MSG_extension_description__",
    "icons": {
        "16": "images\/icon16h.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon16a.png",
        "default_title": "__MSG_extension_name__"
    },
    "author": "Vincent McNabb",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "contextMenus"
    ],
    "offline_enabled": true
}