Auto-Confirm Google Drive Move Popup
This extension auto-confirms the popup when moving a shared file or folder in Google Drive
Co to jest Auto-Confirm Google Drive Move Popup?
Auto-Confirm Google Drive Move Popup to rozszerzenie Chrome opracowane przez Marian, a jego główną funkcją jest „This extension auto-confirms the popup when moving a shared file or folder in Google Drive”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Auto-Confirm Google Drive Move Popup
Pobierz pliki rozszerzeń Auto-Confirm Google Drive Move Popup w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Auto-Confirm Google Drive Move Popup |
ID | fiedgdadjcanifbiecmobokijbkepfnm |
Oficjalny URL | https://chromewebstore.google.com/detail/auto-confirm-google-drive/fiedgdadjcanifbiecmobokijbkepfnm |
Opis | This extension auto-confirms the popup when moving a shared file or folder in Google Drive |
Rozmiar pliku | 84.12 KB |
Liczba instalacji | 260 |
Aktualna Wersja | 0.2 |
Ostatnia Aktualizacja | 2023-06-14 |
Data Publikacji | 2022-10-05 |
Ocena | 4.60/5 Łącznie 10 Oceny |
Deweloper | Marian |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/marianheinsen/drive-extension |
Obsługiwane Języki | 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" ] } ] } |