Context Dictionary Lookup

Context Dictionary Lookup

Web dictionary with context information.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "style/lookup.css"
      ],
      "js": [
        "include/jquery.min.js",
        "include/jquery-ui.min.js",
        "include/lookup.js",
        "include/selection.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "description": "Web dictionary with context information.",
  "options_page": "options.html",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png",
    "256": "icon256.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "20",
  "name": "Context Dictionary Lookup",
  "permissions": [
    "<all_urls>",
    "storage"
  ],
  "update_url": "http://clients2.google.com/service/update2/crx",
  "version": "7.0.0",
  "web_accessible_resources": [
    "img/icon.svg",
    "img/history.png"
  ],
  "background": {
    "scripts": [
      "background.js",
      "common.js",
      "include/jquery.min.js"
    ]
  }
}