Auto-Confirm Google Drive Move Popup
This extension auto-confirms the popup when moving a shared file or folder in Google Drive
Что такое Auto-Confirm Google Drive Move Popup?
Auto-Confirm Google Drive Move Popup - это расширение Chrome, разработанное Marian, и его основная функция - "This extension auto-confirms the popup when moving a shared file or folder in Google Drive".
Снимки экрана расширения
Скачать файл CRX расширения Auto-Confirm Google Drive Move Popup
Скачайте файлы расширений Auto-Confirm Google Drive Move Popup в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
When moving shared files or folders in Google Drive to a different location, a popup dialog titled "Change Who Has Access" appears, warning the user about contributors potentially loosing access. This can become annoying, especially in situations where this warning is inappropriate. This extension automatically confirms the dialog, saving the user one additional step when moving shared files. The extension is open-source. You can have a look at the source code here: https://github.com/marianheinsen/drive-extension
Основная информация о расширении
Название | Auto-Confirm Google Drive Move Popup |
ID | fiedgdadjcanifbiecmobokijbkepfnm |
Официальный URL | https://chromewebstore.google.com/detail/auto-confirm-google-drive/fiedgdadjcanifbiecmobokijbkepfnm |
Описание | This extension auto-confirms the popup when moving a shared file or folder in Google Drive |
Размер файла | 84.12 KB |
Количество установок | 260 |
Текущая Версия | 0.2 |
Последнее Обновление | 2023-06-14 |
Дата публикации | 2022-10-05 |
Рейтинг | 4.60/5 Всего 10 оценок |
Разработчик | Marian |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/marianheinsen/drive-extension |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto-Confirm Google Drive Move Popup", "description": "This extension auto-confirms the popup when moving a shared file or folder in Google Drive", "version": "0.2", "manifest_version": 3, "icons": { "128": "icon.png" }, "host_permissions": [ "https:\/\/drive.google.com\/drive\/*" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/drive.google.com\/drive\/*" ], "js": [ "drive.js" ] } ] } |