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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" ] } ] } |