Simple Mouse Gestures

Simple Mouse Gestures

Extension that provides the ability to define mouse gestures that will run specific actions in your Google Chrome browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Simple Mouse Gestures",
  "description": "Extension that provides the ability to define mouse gestures that will run specific actions in your Google Chrome browser",
  "version": "0.3.3",
  "version_name": "0.3.3 beta",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "consts.js",
        "content-scripts/utils.js",
        "content-scripts/gestures-handler.js",
        "content-scripts/canvas-builder.js",
        "content-scripts/canvas-event-handler.js",
        "content-scripts/canvas-handler.js",
        "content-scripts/settings-storage.js",
        "content-scripts/content-event-handler.js",
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_popup": "popup/popup.html"
  },
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "author": "[email protected]"
}