Meet Chat Notifier
Meet Chat Notifier
Meet Chat Notifier란 무엇입니까?
Meet Chat Notifier은(는) João Vitor da Costa Andrade에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Meet Chat Notifier"입니다.
확장 프로그램 스크린샷
Meet Chat Notifier 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The extension generates a notification of Google Meet chat messages. You can browse other screens, and if you receive a chat message, it will appear as a notification on your operating system. Are you a teacher? see students' questions while teaching!. While using Google Meet, you can disable notifications and re-enable them at any time. * Extension tested on Windows 10, macOS, PopOS. * Make sure notifications are enabled on your computer. * In Windows 10 for notifications to appear in full screen, turn off the focus assistant. Tutorial: https://sites.google.com/view/meet-chat-notifier/perguntas-frequentes (Beta extension translation)
확장 프로그램 기본 정보
이름 | Meet Chat Notifier |
ID | iojeepncopmmkklnmefdogcboiebpljo |
공식 URL | https://chromewebstore.google.com/detail/meet-chat-notifier/iojeepncopmmkklnmefdogcboiebpljo |
설명 | Meet Chat Notifier |
파일 크기 | 31.95 KB |
설치 횟수 | 3,182 |
현재 버전 | 0.0.8 |
최근 업데이트 | 2023-05-06 |
출시 날짜 | 2020-07-31 |
평점 | 4.79/5 총 14 개의 평점 |
개발자 | João Vitor da Costa Andrade |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://sites.google.com/view/meet-chat-notifier |
도움말 페이지 URL | https://forms.gle/aKCdGdN1aaACkVqf7 |
지원되는 언어 | en,en-US,pt-BR,pt-PT |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "0.0.8", "name": "Meet Chat Notifier", "description": "Meet Chat Notifier", "author": "Jo\u00e3o Vitor da Costa Andrade", "permissions": [ "notifications" ], "icons": { "16": "icon16.png", "24": "icon24.png", "36": "icon36.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": { "15": "icon16.png", "24": "icon24.png", "36": "icon36.png", "48": "icon48.png" }, "default_title": "Meet Chat Notifier", "default_popup": "index.html" }, "default_locale": "en", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "content_new_layout.js", "initializer.js" ] } ] } |