Magic Drop

Magic Drop

Magic Drop enables any webpage image and your Google Drive files to be drag and dropped into any other website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Magic Drop enables any webpage image and your Google Drive files to be drag and dropped into any other website.",
  "version": "0.0.5",
  "name": "Magic Drop",
  "icons": {
    "32": "assets/file-32.png",
    "128": "assets/file-128.png"
  },
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "mainApp.js",
        "runtimeProxy.js"
      ],
      "run_at": "document_start",
      "match_about_blank": true,
      "all_frames": true
    }
  ],
  "permissions": [
    "downloads",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "background": {
    "service_worker": "mainServiceWorker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "webkitGetAsEntry.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}