Auto-Confirm Google Drive Move Popup

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

Apa itu Auto-Confirm Google Drive Move Popup?

Auto-Confirm Google Drive Move Popup adalah ekstensi Chrome yang dikembangkan oleh Marian, dan fitur utamanya adalah "This extension auto-confirms the popup when moving a shared file or folder in Google Drive".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Auto-Confirm Google Drive Move Popup

Unduh file ekstensi Auto-Confirm Google Drive Move Popup dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Auto-Confirm Google Drive Move Popup Auto-Confirm Google Drive Move Popup
ID fiedgdadjcanifbiecmobokijbkepfnm
URL Resmi https://chromewebstore.google.com/detail/auto-confirm-google-drive/fiedgdadjcanifbiecmobokijbkepfnm
Deskripsi This extension auto-confirms the popup when moving a shared file or folder in Google Drive
Ukuran File 84.12 KB
Jumlah Instalasi 260
Versi Saat Ini 0.2
Terakhir Diperbarui 2023-06-14
Tanggal Publikasi 2022-10-05
Penilaian 4.60/5 Total 10 Penilaian
Pengembang Marian
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/marianheinsen/drive-extension
Bahasa yang Didukung 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"
            ]
        }
    ]
}