Tablet Gestures

Tablet Gestures

Use 2 finger swipes to control your browser. Supports 8 directions with configurable actions. Tablet optimized.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tablet Gestures",
  "author": "Terry Yuen",
  "version": "0.1.1",
  "description": "__MSG_extensionDescription__",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "24": "icon_24.png",
    "38": "icon_38.png",
    "48": "icon_48.png",
    "96": "icon_96.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "browser_action": {
    "default_icon": {
      "24": "icon_24.png",
      "38": "icon_38.png",
      "48": "icon_48.png",
      "96": "icon_96.png"
    }
  }
}