View Picture

View Picture

Better preview of images, this extension can zoom in, out, rotate, and rotate images in web pages (optimized version)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "action": {
    "default_icon": "icon/icon128.png",
    "default_popup": "html/popup.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "css": [
        "css/zoomImg.css"
      ],
      "js": [
        "js/jquery-2.1.1.min.js",
        "js/showbig.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Better preview of images, this extension can zoom in, out, rotate, and rotate images in web pages (optimized version)",
  "icons": {
    "16": "icon/icon16.png",
    "48": "icon/icon48.png",
    "128": "icon/icon128.png"
  },
  "manifest_version": 3,
  "name": "View Picture",
  "permissions": [
    "contextMenus",
    "storage",
    "tabs"
  ],
  "version": "1.3",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}