smartUp Gestures

smartUp Gestures

A customizable web browser extension that enhances productivity and efficiency through the use of mouse.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "A customizable web browser extension that enhances productivity and efficiency through the use of mouse.",
  "version": "7.3.1",
  "name": "smartUp Gestures",
  "short_name": "smartUp",
  "manifest_version": 3,
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png",
    "default_title": "smartUp"
  },
  "background": {
    "service_worker": "background-wrapper.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/event.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "permissions": [
    "tabs",
    "scripting",
    "notifications",
    "storage",
    "contextMenus",
    "unlimitedStorage",
    "tts",
    "declarativeNetRequest"
  ],
  "optional_permissions": [
    "downloads",
    "downloads.shelf",
    "clipboardRead",
    "clipboardWrite",
    "bookmarks",
    "history",
    "management",
    "sessions",
    "pageCapture",
    "background",
    "topSites"
  ],
  "host_permissions": [
    "<all_urls>",
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "image/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "default_locale": "en"
}