Examine source code of 鼠标悬停图片放大-大师兄

Inspect and view changes in 鼠标悬停图片放大-大师兄 source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "鼠标悬停图片放大-大师兄",
  "version": "5.0.3",
  "manifest_version": 3,
  "description": "在任意网页上,把鼠标悬停在图片的上方,图片会自动放大预览",
  "icons": {
    "16": "icons/dashixiong16x16.png",
    "32": "icons/dashixiong32x32.png",
    "48": "icons/dashixiong48x48.png",
    "128": "icons/dashixiong128x128.png"
  },
  "action": {
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/jquery.min.js",
        "content-scripts/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.jpeg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}