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 là gì?
NeverLateAgain - Auto Join Google Meet là một tiện ích mở rộng Chrome được phát triển bởi https://nickalden.io, và tính năng chính của nó là "Automatically joins GMeet events. Syncs with Google Calendar. No more worrying about schedules. Never Late Again.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng NeverLateAgain - Auto Join Google Meet
Tải xuống các tệp mở rộng NeverLateAgain - Auto Join Google Meet dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | NeverLateAgain - Auto Join Google Meet |
ID | ihieolohdbdkcinfmkeigkpemneddpib |
URL Chính Thức | https://chromewebstore.google.com/detail/neverlateagain-auto-join/ihieolohdbdkcinfmkeigkpemneddpib |
Mô tả | Automatically joins GMeet events. Syncs with Google Calendar. No more worrying about schedules. Never Late Again. |
Kích Thước Tệp | 459 KB |
Số Lần Cài Đặt | 99 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2021-08-04 |
Ngày Phát Hành | 2021-08-03 |
Đánh Giá | 4.25/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | https://nickalden.io |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.nickalden.io/neverlate |
URL Trang Trợ Giúp | https://www.nickalden.io/neverlate |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |