Super Drag and Go

Super Drag and Go

Super Drag and Go, plus 8 most frequently used gestures.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "dragandgo.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "permissions": [
        "storage",
        "cookies",
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "__MSG_extDescription__",
  "name": "__MSG_extName__",
  "icons": {
    "32": "dragandgo_32x32.png",
    "48": "dragandgo_48x48.png",
    "128": "dragandgo_128x128.png"
  },
  "options_page": "options.html",
  "version": "2.1.2",
  "default_locale": "en"
}