View Images in Google Search

View Images in Google Search

Restore the View Image button on Google Images Credits to weienlee for the original extensions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "View Images",
  "version": "2.0",
  "description": "Restore the View Image button on Google Images",
  "author": "heubergen",
  "homepage_url": "https://github.com/heubergen/viewimages",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "include_globs": [
        "http://www.google.*/*",
        "https://www.google.*/*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "script.js"
      ]
    }
  ]
}