TouchZoom

TouchZoom

Improves the default pinch-to-zoom support for touchscreens!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "TouchZoom",
  "version": "1.0",
  "description": "Improves the default multi-touch zooming support for touchscreens!",
  "icons": {
    "32": "icons/touchZoom-32.png",
    "48": "icons/touchZoom-48.png",
    "64": "icons/touchZoom-64.png",
    "100": "icons/touchZoom-100.png"
  },
  "permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "/zoomMaker.js"
      ]
    }
  ]
}