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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}