NeverLateAgain - Auto Join Google Meet
Automatically joins GMeet events. Syncs with Google Calendar. No more worrying about schedules. Never Late Again.
Cos'è NeverLateAgain - Auto Join Google Meet?
NeverLateAgain - Auto Join Google Meet è un'estensione di Chrome sviluppata da https://nickalden.io, e la sua funzione principale è "Automatically joins GMeet events. Syncs with Google Calendar. No more worrying about schedules. Never Late Again.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione NeverLateAgain - Auto Join Google Meet
Scarica i file di estensione NeverLateAgain - Auto Join Google Meet 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
Have you ever been late to a Gmeet class for stupid, inconvenient reasons? Or do you ever just wanna sit back and not have to check your schedule every so often? Yeah, me too... NeverLateAgain makes sure you're never late again to any Google Meet Classes. Conveniently displays classes you have next. Joins the Google Meet 2 minutes early. Automatically closes cam & mic, and joins in. And the best bit, You won't have to worry about being late ever again. Get A+'s for attending early, and no more worrying about schedules!
Informazioni di Base sull'Estensione
Nome | NeverLateAgain - Auto Join Google Meet |
ID | ihieolohdbdkcinfmkeigkpemneddpib |
URL Ufficiale | https://chromewebstore.google.com/detail/neverlateagain-auto-join/ihieolohdbdkcinfmkeigkpemneddpib |
Descrizione | Automatically joins GMeet events. Syncs with Google Calendar. No more worrying about schedules. Never Late Again. |
Dimensione del File | 459 KB |
Conteggio Installazioni | 99 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2021-08-04 |
Data di Pubblicazione | 2021-08-03 |
Valutazione | 4.25/5 Totale 4 Valutazioni |
Sviluppatore | https://nickalden.io |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.nickalden.io/neverlate |
URL della Pagina di Aiuto | https://www.nickalden.io/neverlate |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Automatically joins GMeet events. Syncs with Google Calendar. No more worrying about schedules. Never Late Again.", "manifest_version": 2, "name": "NeverLateAgain - Auto Join Google Meet", "version": "1.0.1", "oauth2": { "client_id": "1095718937705-2jbeckv5md3cl4u2h77fgg0jvk74lqba.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/calendar.events.readonly", "profile email" ] }, "background": { "scripts": [ ".\/background.js" ] }, "browser_action": { "default_icon": { "32": "popuplogo.png" }, "default_popup": "popup.html" }, "icons": { "128": "popuplogo.png" }, "permissions": [ "*:\/\/meet.google.com\/*", "identity", "identity.email", "storage", "tabs", "alarms" ], "content_scripts": [ { "matches": [ "*:\/\/meet.google.com\/*" ], "js": [ "contentScript.js" ] } ] } |