NeverLateAgain - Auto Join Google Meet
Automatically joins GMeet events. Syncs with Google Calendar. No more worrying about schedules. Never Late Again.
什麼是NeverLateAgain - Auto Join Google Meet?
NeverLateAgain - Auto Join Google Meet是由https://nickalden.io開發的Chrome擴展程式,該擴展的主要功能是“Automatically joins GMeet events. Syncs with Google Calendar. No more worrying about schedules. Never Late Again.”。
擴展截圖
下載NeverLateAgain - Auto Join Google Meet擴展crx文件
下載NeverLateAgain - Auto Join Google Meet擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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!
擴展基本資訊
名稱 | NeverLateAgain - Auto Join Google Meet |
ID | ihieolohdbdkcinfmkeigkpemneddpib |
官方網址 | https://chromewebstore.google.com/detail/neverlateagain-auto-join/ihieolohdbdkcinfmkeigkpemneddpib |
簡介 | Automatically joins GMeet events. Syncs with Google Calendar. No more worrying about schedules. Never Late Again. |
檔案大小 | 459 KB |
安裝次數 | 99 |
目前版本 | 1.0.1 |
更新時間 | 2021-08-04 |
上架時間 | 2021-08-03 |
評分 | 4.25/5 共 4 次評分 |
開發者 | https://nickalden.io |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://www.nickalden.io/neverlate |
說明頁面URL | https://www.nickalden.io/neverlate |
支援的語言 | 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" ] } ] } |