Image Direct

Image Direct

Google recently removed the button to view the image source when using Google's image search. With this add-on you can directly view the image source when using google image search again.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Image Direct",
  "version": "0.2.0",
  "description": "Directly view the image source when using google image search.",
  "icons": {
    "48": "icons/border-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "include_globs": [
        "http://www.google.*/*",
        "https://www.google.*/*"
      ],
      "js": [
        "imageDirect.js"
      ]
    }
  ],
  "applications": {
    "gecko": {
      "id": "imagedirect@example.com"
    }
  }
}