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是由Marian開發的Chrome擴展程式,該擴展的主要功能是“This extension auto-confirms the popup when moving a shared file or folder in Google Drive”。

擴展截圖

screenshot

下載Auto-Confirm Google Drive Move Popup擴展crx文件

下載Auto-Confirm Google Drive Move Popup擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}