Hover Lookup

Hover Lookup

Holding <CTRL> + <SHIFT> while hovering over a word will show the wiktionary entry for that word in an inline window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hover Lookup",
  "version": "1.1",
  "description": "Holding <CTRL> + <SHIFT> while hovering over a word will show the wiktionary entry for that word in an inline window.",
  "manifest_version": 2,
  "permissions": [
    "*://*/"
  ],
  "icons": {
    "16": "icon/icon_16.png",
    "32": "icon/icon_32.png",
    "48": "icon/icon_48.png",
    "128": "icon/icon_128.png"
  },
  "background": {
    "scripts": [
      "js/jquery-1.12.4.min.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery-1.12.4.min.js",
        "js/getword.js",
        "js/hoverdict.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "css": [
        "css/hoverdict.css"
      ]
    }
  ]
}