Move Files from Box to Google Drive

Move Files from Box to Google Drive

This extension lets you directly transfer files from Box to Google Drive without download and upload.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Move Files from Box to Google Drive",
  "description": "This extension lets you directly transfer files from Box to Google Drive without download and 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]"
  }
}