Swipe Gesture

Swipe Gesture

Add OSX-style two-finger multitouch gestures

Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Swipe Gesture",
  "version": "2.0",
  "manifest_version": 2,
  "description": "Add OSX-style two-finger multitouch gestures",
  "icons": {
    "16": "img/16.png",
    "48": "img/48.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "swipe.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ]
}