Google Meet Presenter Mode

Choose whether you can be muted while presenting in Google Meet

Google Meet Presenter Mode란 무엇입니까?

Google Meet Presenter Mode은(는) Petri Koivula에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Choose whether you can be muted while presenting in Google Meet"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Google Meet Presenter Mode 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Gives you a choice of whether other Google Meet users can mute you or not.

Intended for use by teachers and other presenters who might get griefed by anonymous users muting them in Meet.                    

확장 프로그램 기본 정보

이름 Google Meet Presenter Mode Google Meet Presenter Mode
ID fiidmaaecmjkhpfinfkdcabglcmghnaa
공식 URL https://chromewebstore.google.com/detail/google-meet-presenter-mod/fiidmaaecmjkhpfinfkdcabglcmghnaa
설명 Choose whether you can be muted while presenting in Google Meet
파일 크기 6.03 KB
설치 횟수 10,000
현재 버전 0.0.2
최근 업데이트 2020-04-14
출시 날짜 2020-04-14
평점 4.29/5 총 7 개의 평점
개발자 Petri Koivula
결제 유형 free
확장 프로그램 웹 사이트 https://gitlab.com/PKJedi/meet-presenter
도움말 페이지 URL https://gitlab.com/PKJedi/meet-presenter/-/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Presenter Mode",
    "short_name": "Presenter Mode",
    "version": "0.0.2",
    "description": "Choose whether you can be muted while presenting in Google Meet",
    "page_action": {
        "default_icon": {
            "32": "assets\/icon_off_32.png"
        },
        "default_title": "Disabled"
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ],
    "permissions": [
        "declarativeContent",
        "https:\/\/meet.google.com\/*"
    ]
}