'View Image' Button

Restores the 'View Images' button when browsing images on Google Images.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "'View Image' Button",
  "description": "Restores the 'View Images' button when browsing images on Google Inages.",
  "version": "0.1.2resigned1",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://google.com/*",
        "*://*.google.com/*"
      ],
      "css": [],
      "js": [
        "inject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "fixButtons.js"
  ],
  "permissions": [
    "activeTab"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{67401093-4cdb-4f86-8e86-54d53dede887}"
    }
  }
}