Word Definer

Word Definer

Get the definitions of all big or complex words from every webpage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Word Definer",
  "description": "Get the definitions of all big or complex words from every webpage",
  "version": "0.0.1",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/dictionary16x16.png",
    "48": "images/dictionary48x48.png",
    "128": "images/dictionary128x128.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "*://*/*"
  ]
}