When2MeetGoogle
Autofill when to meets with your google calendar.
O que é When2MeetGoogle?
When2MeetGoogle é uma extensão do Chrome desenvolvida por ryanreszetnik, e sua principal característica é "Autofill when to meets with your google calendar.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão When2MeetGoogle
Baixe arquivos de extensão When2MeetGoogle 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
Filling out when2meets are always tedious so using When2MeetGoogle will allow you to fill out your availability based on your google calendar in one click! Just pressed the autofill button and it will be filled.
Informações Básicas da Extensão
Nome | When2MeetGoogle |
ID | gmkejagepejdikcliicfegjjhdinacbo |
URL Oficial | https://chromewebstore.google.com/detail/when2meetgoogle/gmkejagepejdikcliicfegjjhdinacbo |
Descrição | Autofill when to meets with your google calendar. |
Tamanho do Arquivo | 215 KB |
Contagem de Instalações | 122 |
Versão Atual | 1.1 |
Última Atualização | 2023-02-07 |
Data de Publicação | 2023-02-07 |
Classificação | 5.00/5 Total de 4 Avaliações |
Desenvolvedor | ryanreszetnik |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://when-2-meet-chrome.web.app |
URL da Página de Ajuda | https://when-2-meet-chrome.web.app |
URL da Página de Política de Privacidade | https://life-planner-fea8f.web.app/privacy |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "When2MeetGoogle", "description": "Autofill when to meets with your google calendar.", "version": "1.1", "manifest_version": 3, "icons": { "16": "logo192.png", "48": "logo192.png", "128": "logo192.png" }, "background": { "service_worker": ".\/static\/js\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.when2meet.com\/*" ], "js": [ ".\/static\/js\/content.js" ], "all_frames": false, "run_at": "document_end" } ], "content_security_policy": { "script-src": "self", "object-src": "self" }, "externally_connectable": { "matches": [ "*:\/\/*.google.com\/*" ] }, "permissions": [ "tabs", "identity" ], "optional_permissions": [], "oauth2": { "client_id": "391349501740-6hfprkdm7f5a9lmd0q7es9itrimqpt30.apps.googleusercontent.com", "scopes": [ "profile email", "https:\/\/www.googleapis.com\/auth\/calendar" ] } } |