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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Marian, και η κύρια λειτουργία του είναι "This extension auto-confirms the popup when moving a shared file or folder in Google Drive".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Auto-Confirm Google Drive Move Popup

Λήψη αρχείων επέκτασης 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"
            ]
        }
    ]
}