Drag-Free(Mouse-Drag & Mouse-RightClick)

Drag-Free(Mouse-Drag & Mouse-RightClick)

This app makes Mouse-Drag and Mouse-RightClick possible

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "applications": {
    "gecko": {
      "id": "dragfree@kongmemo"
    }
  },
  "name": "__MSG_appName__",
  "short_name": "Drag-Free",
  "description": "__MSG_appDescription__",
  "default_locale": "en",
  "version": "6.8",
  "browser_action": {
    "default_icon": "./images/icon.png",
    "default_popup": "main.html",
    "default_title": "Drag Free"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "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"
  ]
}