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"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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" ] } ] } |