Mouse Gesture Events

Mouse Gesture Events

Control your browser faster and easier with gestures using mouse movement.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "version": "3.0.2",
  "description": "__MSG_extDes__",
  "background": {
    "service_worker": "res/background.js"
  },
  "icons": {
    "48": "res/0.png",
    "128": "res/1.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "res/add.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "page": "res/options.htm",
    "open_in_tab": true
  },
  "permissions": [
    "sessions",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}