CrxMouse Chrome™ Mouse Gestures

CrxMouse Chrome™ Mouse Gestures

Boost browsing productivity with mouse gestures! Super Drag, Wheel & more for effortless navigation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_descriptionjson__",
  "version": "6.1.0",
  "manifest_version": 3,
  "icons": {
    "16": "image/icon.png",
    "48": "image/icon.png",
    "128": "image/icon.png"
  },
  "default_locale": "en",
  "permissions": [
    "tabs",
    "storage",
    "contextMenus",
    "webNavigation",
    "webRequest",
    "clipboardRead",
    "clipboardWrite",
    "bookmarks",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "*://*/*",
    "<all_urls>"
  ],
  "action": {
    "default_icon": "image/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"
    },
    {
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "js": [
        "js/frame.js"
      ]
    },
    {
      "matches": [
        "https://crxmouse.com/*"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "js/websiteHandler.js"
      ]
    }
  ],
  "options_page": "options.html",
  "web_accessible_resources": [
    {
      "resources": [
        "image/*",
        "js/*",
        "icon.png",
        "html/notifi.html",
        "options.html",
        "fonts/*",
        "css/"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDGM2NQQOGflq58fJSMziBax6/S+xWrQAwFAx7tUVjL2WtLYzyonBsNZU0qT/7WkOadpvq3wdrL+RS8P9c+KXoLqMEK1BL4VfOCv64GCgF3b5jsorKmKRI26rDJy620knKar+wIOQ23iCgJn4K3cmI5/4TapzhqUSo8quoga0/2TwIDAQAB"
}