Pumpkin's Right Click Enable

Pumpkin's Right Click Enable

It allows you to right-click and drag the mouse, and makes it easy to turn the javascript off and on.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.0.7",
  "icons": {
    "16": "icon/p_icon_16.png",
    "48": "icon/p_icon_48.png",
    "128": "icon/p_icon_128.png"
  },
  "permissions": [
    "tabs",
    "contentSettings",
    "storage",
    "contextMenus",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "default_locale": "en",
  "background": {
    "type": "module",
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "pumpkin's right click enable",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "js": [
        "content-scripts/bu.js"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "content-scripts/start.js"
      ]
    }
  ]
}