Multi-touch Zoom

Multi-touch Zoom

Not needed in latest FF Adds missing feature of Firefox: Smooth zooming with the pinch gesture on a trackpad Non-multi-touch users can still smooth zoom by scrolling and holding down the SHIFT key Thanks to Marek Polakovic for the gesture icon

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Multi-touch Zoom",
  "version": "0.95",
  "applications": {
    "gecko": {
      "id": "{90b5a72e-cdbd-49df-8304-5b5d6ea84a0f}",
      "strict_min_version": "57.0"
    }
  },
  "description": "Adds smooth multi-touch zoom that matches the behavior in Safari and Chrome",
  "developer": {
    "name": "George Corney",
    "url": "https://github.com/haxiomic"
  },
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png",
    "192": "icons/icon-192.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "pinch-zoom.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "settings.html",
    "browser_style": true
  }
}