Korean IME with Romanization Tool

Korean IME with Romanization Tool

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

Merlin
Additional files are visible only to premium users

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": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "contextMenus"
  ],
  "offline_enabled": true
}