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