Auto-Confirm Google Drive Move Popup

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

Co je Auto-Confirm Google Drive Move Popup?

Auto-Confirm Google Drive Move Popup je rozšíření Chrome vyvinuté Marian, a jeho hlavní funkcí je „This extension auto-confirms the popup when moving a shared file or folder in Google Drive“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Auto-Confirm Google Drive Move Popup

Stáhněte si soubory rozšíření Auto-Confirm Google Drive Move Popup ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Auto-Confirm Google Drive Move Popup Auto-Confirm Google Drive Move Popup
ID fiedgdadjcanifbiecmobokijbkepfnm
Oficiální URL https://chromewebstore.google.com/detail/auto-confirm-google-drive/fiedgdadjcanifbiecmobokijbkepfnm
Popis This extension auto-confirms the popup when moving a shared file or folder in Google Drive
Velikost souboru 84.12 KB
Počet instalací 260
Aktuální Verze 0.2
Poslední Aktualizace 2023-06-14
Datum Vydání 2022-10-05
Hodnocení 4.60/5 Celkem 10 Hodnocení
Vývojář Marian
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/marianheinsen/drive-extension
Podporované Jazyky 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"
            ]
        }
    ]
}