Hover

Hover

Hover, preview

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hover",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "Hover, preview",
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "permissions": [
    "storage",
    "http://*/*",
    "https://*/*",
    "webRequest",
    "webRequestBlocking",
    "tabs"
  ],
  "background": {
    "scripts": [
      "src/background/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "src/popup/popup.html",
    "default_title": "Hover Settings"
  },
  "web_accessible_resources": [
    "icons/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "src/inject/main.css"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "src/inject/helpers/jquery.js",
        "src/inject/helpers/jqueryui.js",
        "src/inject/helpers/underscore-umd-min.js",
        "src/inject/helpers/helpers.js",
        "src/inject/helpers/purify.js",
        "src/inject/helpers/readability.js",
        "src/inject/helpers/progress.js",
        "src/inject/injector.js",
        "src/inject/main.js"
      ]
    }
  ],
  "commands": {
    "wordLookup": {
      "suggested_key": {
        "windows": "Ctrl+Shift+H",
        "mac": "MacCtrl+Shift+H",
        "chromeos": "Ctrl+Shift+H",
        "linux": "Ctrl+Shift+H"
      },
      "description": "Lookup any word using Google"
    }
  }
}