Auto-Confirm Google Drive Move Popup
This extension auto-confirms the popup when moving a shared file or folder in Google Drive
O que é Auto-Confirm Google Drive Move Popup?
Auto-Confirm Google Drive Move Popup é uma extensão do Chrome desenvolvida por Marian, e sua principal característica é "This extension auto-confirms the popup when moving a shared file or folder in Google Drive".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Auto-Confirm Google Drive Move Popup
Baixe arquivos de extensão Auto-Confirm Google Drive Move Popup no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Auto-Confirm Google Drive Move Popup |
ID | fiedgdadjcanifbiecmobokijbkepfnm |
URL Oficial | https://chromewebstore.google.com/detail/auto-confirm-google-drive/fiedgdadjcanifbiecmobokijbkepfnm |
Descrição | This extension auto-confirms the popup when moving a shared file or folder in Google Drive |
Tamanho do Arquivo | 84.12 KB |
Contagem de Instalações | 260 |
Versão Atual | 0.2 |
Última Atualização | 2023-06-14 |
Data de Publicação | 2022-10-05 |
Classificação | 4.60/5 Total de 10 Avaliações |
Desenvolvedor | Marian |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/marianheinsen/drive-extension |
Idiomas Suportados | 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" ] } ] } |