Google Meet - Automatically Accept Guests

Automatically accepts all guests at a Google Meet meeting

Google Meet - Automatically Accept Guests란 무엇입니까?

Google Meet - Automatically Accept Guests은(는) alljs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically accepts all guests at a Google Meet meeting"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Google Meet - Automatically Accept Guests 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension makes it easy to manage Google Meet meetings.

The extension is for people who have access to the meeting domain (that is, people who can create meeting rooms), and does not apply to guests.

Automatically accepts all guests in a meeting. This function does not need to be activated, it is possible to deactivate or reactivate it during the meeting.

How to use:
- Click on the extension icon that will appear in the upper right corner of the browser;
- Insert the meeting code;
- Select the desired options;
- Click on Enter;
- Done, a new tab will open with permissions enabled.

The field for filling in the meeting code accepts only valid meeting codes, in the format "xxx-xxxx-xxx".

The extension maintains the user's preferences, even when closing the browser, for easy use. All data entered in the extension is stored locally in the user's storage.

The Auto Allow Guests function works even with the user navigating in another tab (in the same window and without being minimized), however, the permission occurs more slowly, and the guest's entry request may expire. Therefore, it is recommended to have the meeting tab open to automatically accept guests.

Keyboard shortcuts:

"p" key: Opens the presentation menu;
"s" key: Stop presentation;
"y" key: Enables Auto Allow Guests;
"n" key: Disable Auto Allow Guests;
"r" key: Remove all participants from the meeting;
"m" key: Silence all meeting participants.

The "Remove All" and "Mute All" functions apply to all meeting participants, not just guests. Remember that only the participants themselves can rejoin the meeting or reactivate their microphones.

The "Remove All" function is particularly useful when ending a meeting, when there is a need to remove all other participants from the room.

The "Silence All" function is particularly useful in a meeting with a speaker, in which it is necessary to silence all other participants.

Version 2.0:

"Mirror screen" button:
It allows you to mirror the screen in a new tab, making it possible that, when sharing only one window in the meeting, it is possible to share the entire screen through the mirroring tab.
This function is particularly useful when there is a need to interrupt the presentation at all times to switch sharing between just one window and the entire screen.

Screen mirroring, like all extension functionality, only works with the active window, that is, it is necessary that the shared window is not minimized.

Version 3.0:

Allows you to silence all participants in a meeting.                    

확장 프로그램 기본 정보

이름 Google Meet - Automatically Accept Guests Google Meet - Automatically Accept Guests
ID ihlabelanalahcdadbbfggjpdhmkpmpo
공식 URL https://chromewebstore.google.com/detail/google-meet-automatically/ihlabelanalahcdadbbfggjpdhmkpmpo
설명 Automatically accepts all guests at a Google Meet meeting
파일 크기 12.32 KB
설치 횟수 26,985
현재 버전 4.1.3
최근 업데이트 2020-08-18
출시 날짜 2020-07-23
평점 2.04/5 총 24 개의 평점
개발자 alljs
이메일 [email protected]
결제 유형 free
지원되는 언어 en,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "version": "4.1.3",
    "default_locale": "pt_BR",
    "description": "__MSG_appDescription__",
    "icons": {
        "48": "icons\/meet-48.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "*:\/\/meet.google.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "index.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/meet-48.png",
        "default_title": "__MSG_appName__",
        "default_popup": "popup\/popup-redir.html"
    }
}