Dictionary Lookup

Dictionary Lookup

Look up any word in an inline frame with a simple click and without leaving the page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dictionary Lookup",
  "version": "4.3.5",
  "manifest_version": 2,
  "description": "Look up any word in an inline frame with a simple click and without leaving the page.",
  "icons": {
    "128": "img/icon.png"
  },
  "options_page": "options.htm",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "frame.css"
      ],
      "js": [
        "lookup.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "permissions": [
    "http://dictionary-lookup.org/",
    "http://commons.wikimedia.org/"
  ],
  "web_accessible_resources": [
    "img/back.png",
    "img/gradient_down.png",
    "img/handle.png",
    "img/loader.gif",
    "img/external.png",
    "img/gradient_up.png",
    "img/icon.png",
    "img/speaker.png"
  ]
}