Toktogi: A Korean-English Popup Dictionary

Toktogi: A Korean-English Popup Dictionary

Popup Korean-English dictionary that shows you the definitions of Korean words when you hover the mouse next to them

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Geza Kovacs",
  "background": {
    "scripts": [
      "js/background/util.js",
      "js/background/dictionary.js",
      "js/background/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/19.png",
      "38": "images/38.png"
    }
  },
  "content_scripts": [
    {
      "css": [
        "css/inject.css"
      ],
      "js": [
        "js/vendor/jquery-2.1.4.min.js",
        "js/content/browser_tools.js",
        "js/content/inject.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Popup Korean-English dictionary that shows you the definitions of Korean words when you hover the mouse next to them",
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "manifest_version": 2,
  "name": "Toktogi: A Korean-English Popup Dictionary",
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "<all_urls>"
  ],
  "short_name": "Toktogi",
  "version": "0.6.7",
  "web_accessible_resources": [
    "images/unlock.png",
    "images/lock.png",
    "images/plus.png"
  ]
}