Meet Scheduler
An extension to start meetings automatically
Meet Scheduler란 무엇입니까?
Meet Scheduler은(는) Akshat에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to start meetings automatically"입니다.
확장 프로그램 스크린샷
Meet Scheduler 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Meetimely is the extension for online classes. Avoid fumbling with meeting links and times and missing your important lecture. Avoid that moment when you realise you forgot to leave the meeting when it ended hours ago. Just add your meeting link, time and duration and sit back as it is handled for you. New: Save and share your meeting details with others!
확장 프로그램 기본 정보
이름 | Meet Scheduler |
ID | aenhmmfelkmdlihmaiblnhdmfopmbonc |
공식 URL | https://chromewebstore.google.com/detail/meet-scheduler/aenhmmfelkmdlihmaiblnhdmfopmbonc |
설명 | An extension to start meetings automatically |
파일 크기 | 105 KB |
설치 횟수 | 56 |
현재 버전 | 0.1.4 |
최근 업데이트 | 2022-02-02 |
출시 날짜 | 2021-08-14 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | Akshat |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://akshat-oke.github.io/privacy.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Meet Scheduler", "version": "0.1.4", "description": "An extension to start meetings automatically", "manifest_version": 3, "icons": { "48": "icon48.png" }, "permissions": [ "storage", "alarms", "tabs" ], "background": { "service_worker": "background.js" }, "action": { "default_title": "Schedule meets", "default_popup": "popup\/popup.html" }, "options_page": "options_page\/options_page.html", "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "css": [ "google-meet.css" ], "js": [ "meet_script.js", "endCall-script.js" ] } ], "web_accessible_resources": [ { "resources": [ "google-meet.html" ], "matches": [ "https:\/\/meet.google.com\/*", "https:\/\/www.google.com\/*" ] } ], "externally_connectable": { "matches": [ "*:\/\/localhost\/*", "https:\/\/*.jeenius.gq\/*" ] } } |