Auto-Confirm Google Drive Move Popup

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

ما هو Auto-Confirm Google Drive Move Popup؟

Auto-Confirm Google Drive Move Popup هو إضافة Chrome تم تطويرها بواسطة Marian، والميزة الرئيسية لها هي "This extension auto-confirms the popup when moving a shared file or folder in Google Drive".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Auto-Confirm Google Drive Move Popup

قم بتنزيل ملفات الامتداد Auto-Confirm Google Drive Move Popup بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم Auto-Confirm Google Drive Move Popup Auto-Confirm Google Drive Move Popup
ID fiedgdadjcanifbiecmobokijbkepfnm
عنوان URL الرسمي https://chromewebstore.google.com/detail/auto-confirm-google-drive/fiedgdadjcanifbiecmobokijbkepfnm
الوصف This extension auto-confirms the popup when moving a shared file or folder in Google Drive
حجم الملف 84.12 KB
عدد التثبيتات 260
النسخة الحالية 0.2
آخر تحديث 2023-06-14
تاريخ النشر 2022-10-05
تقييم 4.60/5 مجموع تقييمات 10
المطور Marian
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/marianheinsen/drive-extension
اللغات المدعومة 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"
            ]
        }
    ]
}