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 là gì?

Auto-Confirm Google Drive Move Popup là một tiện ích mở rộng Chrome được phát triển bởi Marian, và tính năng chính của nó là "This extension auto-confirms the popup when moving a shared file or folder in Google Drive".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Auto-Confirm Google Drive Move Popup

Tải xuống các tệp mở rộng Auto-Confirm Google Drive Move Popup dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Auto-Confirm Google Drive Move Popup Auto-Confirm Google Drive Move Popup
ID fiedgdadjcanifbiecmobokijbkepfnm
URL Chính Thức https://chromewebstore.google.com/detail/auto-confirm-google-drive/fiedgdadjcanifbiecmobokijbkepfnm
Mô tả This extension auto-confirms the popup when moving a shared file or folder in Google Drive
Kích Thước Tệp 84.12 KB
Số Lần Cài Đặt 260
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2023-06-14
Ngày Phát Hành 2022-10-05
Đánh Giá 4.60/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Marian
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/marianheinsen/drive-extension
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}