Google image view image button

Google image view image button

Adds the view image button back to google image results

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Google images view image button",
  "description": "Adds the view image button back to google image results",
  "version": "1.4resigned1",
  "icons": {
    "16": "img/icon_16.png",
    "24": "img/icon_24.png",
    "32": "img/icon_32.png",
    "48": "img/icon_48.png",
    "64": "img/icon_64.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "img/icon_16.png",
      "24": "img/icon_24.png",
      "32": "img/icon_32.png",
      "48": "img/icon_48.png",
      "64": "img/icon_64.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.min.js",
        "js/content_script.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}