Make Google Images Great Again

Make Google Images Great Again

Brings the [View Image] and [Search by Image] buttons back to Google Images search results.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Make Google Images Great Again",
  "short_name": "MGIGA",
  "author": "Donnie Clapp",
  "version": "0.2.0",
  "description": "Brings the [View Image] and [Search by Image] buttons back to Google Images search results.",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "96": "images/icon96.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/search?*tbm=isch*"
      ],
      "js": [
        "MGIGA.js"
      ]
    }
  ]
}