Auto-Confirm Google Drive Move Popup

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

Vad är Auto-Confirm Google Drive Move Popup?

Auto-Confirm Google Drive Move Popup är en Chrome-tillägg utvecklad av Marian, och dess huvudfunktion är "This extension auto-confirms the popup when moving a shared file or folder in Google Drive".

Tilläggsskärmbilder

screenshot

Ladda ner Auto-Confirm Google Drive Move Popup-förlängningens CRX-fil

Ladda ner Auto-Confirm Google Drive Move Popup-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Auto-Confirm Google Drive Move Popup Auto-Confirm Google Drive Move Popup
ID fiedgdadjcanifbiecmobokijbkepfnm
Officiell webbadress https://chromewebstore.google.com/detail/auto-confirm-google-drive/fiedgdadjcanifbiecmobokijbkepfnm
Beskrivning This extension auto-confirms the popup when moving a shared file or folder in Google Drive
Filstorlek 84.12 KB
Antal Installationer 260
Aktuell Version 0.2
Senast Uppdaterad 2023-06-14
Publiceringsdatum 2022-10-05
Betyg 4.60/5 Totalt 10 Betyg
Utvecklare Marian
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/marianheinsen/drive-extension
Stödda Språk 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"
            ]
        }
    ]
}