🔍 View Image

🔍 View Image

View original the original image instead of the website when you click on an image in search results.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "🔍 View Image",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "View original the original image instead of the website when you click on an image in search results.",
  "homepage_url": "https://viewimage.koenendaan.nl",
  "icons": {
    "16": "logo/zoom_logo_16.png",
    "48": "logo/zoom_logo_48.png",
    "128": "logo/zoom_logo_128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "logo/zoom_logo_16.png",
      "24": "logo/zoom_logo_24.png",
      "32": "logo/zoom_logo_32.png"
    },
    "default_title": "View Image",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery.js",
        "script.js"
      ]
    }
  ]
}