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」です。
拡張機能のスクリーンショット
Auto-Confirm Google Drive Move Popup拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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" ] } ] } |