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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension auto-confirms the popup when moving a shared file or folder in Google Drive"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Auto-Confirm Google Drive Move Popup एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } ] } |