Transfer Dropbox to Google Drive
Directly transfer files from Dropbox to Google Drive and vice versa. No download and re-upload.
Что такое Transfer Dropbox to Google Drive?
Transfer Dropbox to Google Drive - это расширение Chrome, разработанное https://www.multcloud.com, и его основная функция - "Directly transfer files from Dropbox to Google Drive and vice versa. No download and re-upload.".
Снимки экрана расширения
Скачать файл CRX расширения Transfer Dropbox to Google Drive
Скачайте файлы расширений Transfer Dropbox to Google Drive в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
MultCloud is a free web-based tool that enables you to easily transfer, migrate, backup, sync or move files from one cloud to another and access all your online files on different clouds with a single login. Over 30 cloud services supported. Some use cases: * Transfer files from Dropbox to Google Drive * Migrate or move data between two Google Drives * Backup Google Drive to NAS * Sync OneDrive with Google Drive * Transfer Google Drive to iCloud Key Features: * Directly transfer files from one cloud to another for free. * File transfer in background, allowing you to close browser. * Transfer cloud data offline without going through your computer. * Schedule automatic data transfer between two cloud services. * Real-time cloud-to-cloud sync. Website: https://www.multcloud.com Facebook: http://www.facebook.com/multcloud Twitter: https://twitter.com/multcloud Customer support: [email protected]
Основная информация о расширении
Название | Transfer Dropbox to Google Drive |
ID | dhkemmehlndncfkilljmpeacciajkfag |
Официальный URL | https://chromewebstore.google.com/detail/transfer-dropbox-to-googl/dhkemmehlndncfkilljmpeacciajkfag |
Описание | Directly transfer files from Dropbox to Google Drive and vice versa. No download and re-upload. |
Размер файла | 228 KB |
Количество установок | 37,114 |
Текущая Версия | 2.1.6 |
Последнее Обновление | 2024-03-01 |
Дата публикации | 2019-08-28 |
Рейтинг | 3.82/5 Всего 114 оценок |
Разработчик | https://www.multcloud.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://www.multcloud.com/ |
URL страницы помощи | https://www.multcloud.com/helps |
URL страницы политики конфиденциальности | https://multcloud.com/policy |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Transfer Dropbox to Google Drive", "description": "Directly transfer files from Dropbox to Google Drive 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]" } } |