Trackpad Gestures

Trackpad Gestures

Increase browsing productivity by performing custom actions with simple mouse gestures

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Trackpad Gestures",
  "version": "1.0.0",
  "author": "st.ext",
  "description": "Increase browsing productivity by performing custom actions with simple mouse gestures",
  "permissions": [
    "storage",
    "sessions",
    "tabs",
    "scripting",
    "history"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "static/js/background_v3.js"
  },
  "action": {
    "default_popup": "views/popup_v3.html",
    "default_icon": {
      "16": "views/icons/research.png"
    }
  },
  "options_ui": {
    "page": "views/options_v3.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "static/js/content_script_v3.js"
      ]
    }
  ],
  "manifest_version": 3
}