Simple Mouse Gestures

Simple Mouse Gestures

Mouse Gestures Super Drag Multi Link Opener Wheel Gestures Long Press on Links Rocker Gestures ****** When mouse gestures are enabled, a visual guide displays when you hold the right mouse button down and move the mouse.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "minimum_chrome_version": "43",
  "name": "Simple Mouse Gestures",
  "description": "Mouse Gestures, Super Drag, Multi Link Opener, Wheel Gestures, Long Press on Links, Rocker Gestures.",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "match_about_blank": true,
      "run_at": "document_start",
      "js": [
        "js/contentscript.js"
      ],
      "matches": [
        "*://*/*",
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "web_accessible_resources": [
    "img/up.png",
    "img/right.png",
    "img/left.png",
    "img/down.png"
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0"
    }
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "bookmarks",
    "history",
    "clipboardWrite",
    "clipboardRead",
    "downloads",
    "sessions",
    "management",
    "browserSettings",
    "<all_urls>"
  ],
  "content_security_policy": "script-src 'self'; connect-src *; img-src *; frame-src *; object-src 'self'",
  "version": "3.3resigned1"
}