Auto-Confirm Google Drive Move Popup

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

Cos'è Auto-Confirm Google Drive Move Popup?

Auto-Confirm Google Drive Move Popup è un'estensione di Chrome sviluppata da Marian, e la sua funzione principale è "This extension auto-confirms the popup when moving a shared file or folder in Google Drive".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Auto-Confirm Google Drive Move Popup

Scarica i file di estensione Auto-Confirm Google Drive Move Popup in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Auto-Confirm Google Drive Move Popup Auto-Confirm Google Drive Move Popup
ID fiedgdadjcanifbiecmobokijbkepfnm
URL Ufficiale https://chromewebstore.google.com/detail/auto-confirm-google-drive/fiedgdadjcanifbiecmobokijbkepfnm
Descrizione This extension auto-confirms the popup when moving a shared file or folder in Google Drive
Dimensione del File 84.12 KB
Conteggio Installazioni 260
Versione Corrente 0.2
Ultimo Aggiornamento 2023-06-14
Data di Pubblicazione 2022-10-05
Valutazione 4.60/5 Totale 10 Valutazioni
Sviluppatore Marian
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/marianheinsen/drive-extension
Lingue Supportate 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"
            ]
        }
    ]
}