hooverZoom

hooverZoom

Display a linked image in a fullsize overlay on mouse hover.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "hooverZoom",
  "applications": {
    "gecko": {
      "id": "jid1-ypAaFtWSGV9ANQ@jetpack"
    }
  },
  "version": "1.124.1",
  "description": "A compact add-on for displaying media on mouseover.",
  "permissions": [
    "<all_urls>",
    "history",
    "storage"
  ],
  "background": {
    "scripts": [
      "main.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "js": [
        "mod.js"
      ],
      "css": [
        "mod.css"
      ],
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "page": "options.html"
  }
}