Barry's Image Zoom

Barry's Image Zoom

Zoom in on any image in your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Barry's Image Zoom",
  "short_name": "Barry's Image Zoom",
  "version": "1.1",
  "description": "Zoom in on any image in your browser.",
  "author": "Barry Fruitman",
  "manifest_version": 2,
  "content_scripts": [
    {
      "js": [
        "barryzoom.js"
      ],
      "matches": [
        "http://*/*.jpg",
        "https://*/*.jpg",
        "http://*/*.jpeg",
        "https://*/*.jpeg",
        "http://*/*.png",
        "https://*/*.png",
        "http://*/*.gif",
        "https://*/*.gif"
      ]
    }
  ],
  "icons": {
    "16": "logo_16.png",
    "24": "logo_24.png",
    "32": "logo_32.png",
    "48": "logo_48.png",
    "64": "logo_64.png",
    "128": "logo_128.png"
  }
}