Transfer Google Drive to Onedrive

Transfer Google Drive to Onedrive

Transfer files from Google Drive to Onedrive and vice versa. No download and re-upload.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Transfer Google Drive to Onedrive",
  "description": "Transfer files from Google Drive to Onedrive and vice versa. No download and re-upload.",
  "version": "2.1.6",
  "manifest_version": 3,
  "permissions": [
    "cookies"
  ],
  "host_permissions": [
    "https://www.multcloud.com/",
    "https://app.multcloud.com/",
    "https://test.multcloud.com/"
  ],
  "action": {
    "default_popup": "to-multcloud.html",
    "default_icon": {
      "16": "/images/[email protected]",
      "32": "/images/[email protected]",
      "48": "/images/[email protected]",
      "128": "/images/[email protected]"
    }
  },
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "googleDrive.js"
      ],
      "matches": [
        "https://drive.google.com/*"
      ]
    },
    {
      "js": [
        "jquery.min.js",
        "dropbox.js"
      ],
      "matches": [
        "https://www.dropbox.com/home/*"
      ]
    },
    {
      "js": [
        "jquery.min.js",
        "oneDrive.js"
      ],
      "matches": [
        "https://onedrive.live.com/*",
        "https://*.sharepoint.com/*"
      ]
    },
    {
      "js": [
        "jquery.min.js",
        "icloud.js"
      ],
      "matches": [
        "https://www.icloud.com/*",
        "https://www.icloud.com.cn/*"
      ]
    },
    {
      "js": [
        "jquery.min.js",
        "googlePhotos.js"
      ],
      "matches": [
        "https://photos.google.com/*"
      ]
    }
  ],
  "icons": {
    "16": "/images/[email protected]",
    "32": "/images/[email protected]",
    "48": "/images/[email protected]",
    "128": "/images/[email protected]"
  }
}