Chrome Mouse Gestures

Chrome Mouse Gestures

Boost browsing productivity with mouse navigation shortcuts - simple Mouse Gestures, Super Drag, Wheel Gestures, Rocker Gestures.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "crxMouse Top Gestures"
  },
  "background": {
    "service_worker": "service_worker.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/jquery-3.3.1.min.js",
        "content.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "js/frame.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end"
    },
    {
      "all_frames": true,
      "js": [
        "js/websiteHandler.js"
      ],
      "matches": [
        "https://crxmouse.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/dash.js",
        "js/update.js",
        "js/enumerate.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "default_locale": "zh_CN",
  "description": "__MSG_descriptionjson__",
  "host_permissions": [
    "*://*/*",
    "<all_urls>"
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "storage",
    "contextMenus",
    "declarativeNetRequest",
    "webNavigation",
    "webRequest",
    "clipboardRead",
    "clipboardWrite",
    "bookmarks",
    "unlimitedStorage"
  ],
  "version": "3.0.3",
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "image/*",
        "js/*",
        "icon.png",
        "html/notifi.html",
        "options.html",
        "fonts/*",
        "css/"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}