Image Zoomer

Image Zoomer

最简单的图片Hover放大插件,即安即用

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Image Zoomer",
  "version": "1.1.0",
  "description": "最简单的图片Hover放大插件,即安即用",
  "author": "merrier1993",
  "manifest_version": 2,
  "icons": {
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "includes/app.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "includes/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "permissions": [
    "*://*/*",
    "downloads",
    "history",
    "storage"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx"
}