Remove Image Search Zoom

Remove Image Search Zoom

In Google Image searches, images automatically zoom on hover-over. Now you can disable zoom.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Remove Image Search Zoom",
  "version": "1.0",
  "manifest_version": 2,
  "description": "In Google Image searches, images automatically zoom on hover-over. Now you can disable zoom.",
  "background": {
    "scripts": [
      "manual.js"
    ]
  },
  "page_action": {
    "default_title": "Zoom Disabled in Image Search",
    "default_icon": "icon-19.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.google.com/search*",
        "https://www.google.com/search*"
      ],
      "css": [
        "disable.css"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ],
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  }
}