Auto-Confirm Google Drive Move Popup

This extension auto-confirms the popup when moving a shared file or folder in Google Drive

¿Qué es Auto-Confirm Google Drive Move Popup?

Auto-Confirm Google Drive Move Popup es una extensión de Chrome desarrollada por Marian, y su función principal es "This extension auto-confirms the popup when moving a shared file or folder in Google Drive".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Auto-Confirm Google Drive Move Popup

Descarga archivos de extensión Auto-Confirm Google Drive Move Popup en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Auto-Confirm Google Drive Move Popup Auto-Confirm Google Drive Move Popup
ID fiedgdadjcanifbiecmobokijbkepfnm
URL Oficial https://chromewebstore.google.com/detail/auto-confirm-google-drive/fiedgdadjcanifbiecmobokijbkepfnm
Descripción This extension auto-confirms the popup when moving a shared file or folder in Google Drive
Tamaño del Archivo 84.12 KB
Cantidad de Instalaciones 260
Versión Actual 0.2
Última Actualización 2023-06-14
Fecha de Publicación 2022-10-05
Calificación 4.60/5 Total de 10 Calificaciones
Desarrollador Marian
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/marianheinsen/drive-extension
Idiomas Soportados 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"
            ]
        }
    ]
}