Meet for Teachers
For educators using Google Meet.
Meet for Teachers란 무엇입니까?
Meet for Teachers은(는) http://north27.co.uk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "For educators using Google Meet."입니다.
확장 프로그램 스크린샷
Meet for Teachers 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
• Toggle (on by default) to "lock meets" and ignore any join requests to mitigate against "meet bombing". When enabled the "N" icon will go green. • At random (about 1 in 20), a popup with safeguarding tips/reminders will appear To contribute with any suggestions please message us at https://www.north27.co.uk
확장 프로그램 기본 정보
이름 | |
ID | edbemhpjllbfppjcdkefingohajokaca |
공식 URL | https://chrome.google.com/webstore/detail/meet-for-teachers/edbemhpjllbfppjcdkefingohajokaca |
설명 | For educators using Google Meet. |
파일 크기 | 225 KB |
설치 횟수 | 10,000 |
현재 버전 | 1.4 |
최근 업데이트 | 2021-03-31 |
출시 날짜 | 2020-06-02 |
평점 | 2.78/5 총 9 개의 평점 |
개발자 | http://north27.co.uk |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://support.north27.co.uk |
개인정보 보호 정책 페이지 URL | http://north27.co.uk/aet-extension-privacy-policy |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Meet for Teachers", "version": "1.4", "description": "For educators using Google Meet.", "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/meet.google.com\/**-**-**" ], "all_frames": true, "js": [ "scripts\/main.js" ] } ], "permissions": [ "activeTab", "storage", "identity", "identity.email" ], "icons": { "16": "assets\/icons\/n27_icon_16.png", "32": "assets\/icons\/n27_icon_32.png", "48": "assets\/icons\/n27_icon_48.png", "128": "assets\/icons\/n27_icon_128.png" }, "manifest_version": 2, "web_accessible_resources": [ "scripts\/*", "styles\/*" ], "browser_action": { "default_popup": "views\/popup.html", "default_title": "Meet for Teachers" } } |