DragFree (Mouse Drag & Right Click Release)

DragFree (Mouse Drag & Right Click Release)

This app enables mouse dragging and right-clicking on sites where these functions are disabled.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "short_name": "Drag-Free",
  "description": "__MSG_appDescription__",
  "default_locale": "en",
  "version": "8.1",
  "action": {
    "default_icon": "./images/icon.png",
    "default_popup": "main.html",
    "default_title": "Drag Free"
  },
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "releasedrag": {
      "suggested_key": {
        "default": "Alt+1",
        "mac": "Alt+1"
      },
      "description": "DragFree Hotkey"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "releaseDrag.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}