Auto-Confirm Google Drive Move Popup

Auto-Confirm Google Drive Move Popup

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

Merlin
Additional files are visible only to premium users

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"
      ]
    }
  ]
}