When2MeetGoogle
Autofill when to meets with your google calendar.
Cos'è When2MeetGoogle?
When2MeetGoogle è un'estensione di Chrome sviluppata da ryanreszetnik, e la sua funzione principale è "Autofill when to meets with your google calendar.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione When2MeetGoogle
Scarica i file di estensione When2MeetGoogle in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | When2MeetGoogle |
ID | gmkejagepejdikcliicfegjjhdinacbo |
URL Ufficiale | https://chromewebstore.google.com/detail/when2meetgoogle/gmkejagepejdikcliicfegjjhdinacbo |
Descrizione | Autofill when to meets with your google calendar. |
Dimensione del File | 215 KB |
Conteggio Installazioni | 122 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2023-02-07 |
Data di Pubblicazione | 2023-02-07 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | ryanreszetnik |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://when-2-meet-chrome.web.app |
URL della Pagina di Aiuto | https://when-2-meet-chrome.web.app |
URL della Pagina della Politica sulla Privacy | https://life-planner-fea8f.web.app/privacy |
Lingue Supportate | 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" ] } } |