Google Meet auto admit

Google Meet Auto Admit by smashciotechky

Google Meet auto admit란 무엇입니까?

Google Meet auto admit은(는) https://www.zoomcorder.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Google Meet Auto Admit by smashciotechky"입니다.

확장 프로그램 스크린샷

screenshot

Google Meet auto admit 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Automatically admit join requests from external guests to Google Meet
Automatically click the "Admit" button when a join request comes in from external guests.

If you install this extension in chrome then in Google meet rooms it will automatically lets users login by clicking the admit button on the popup.

You can switch the extension from its menu. As default it checks for popup with submit button "Admit". 

No personally identifying information is ever captured or stored with this extension. 

Software is provided by Zoomcorder.com - the video bot service to record ANY video meeting WITHOUT attending and without being the host. 50% of people miss webinars they sign up to attend. With Zoomcorder - you can schedule it to record ANY video meeting and have a recording sent to you immediately after the meeting is over. 

Zoomcorder.com works flawlessly with Zoom, GoToMeeting, GoToWebinar, Microsoft Team, or Google Meet meetings. Give it a try and never miss another important video meeting.                    

확장 프로그램 기본 정보

이름 Google Meet auto admit Google Meet auto admit
ID pabkjoplheapcclldpknfpcepheldbga
공식 URL https://chromewebstore.google.com/detail/google-meet-auto-admit/pabkjoplheapcclldpknfpcepheldbga
설명 Google Meet Auto Admit by smashciotechky
파일 크기 197 KB
설치 횟수 42,931
현재 버전 11.0
최근 업데이트 2023-05-17
출시 날짜 2020-08-17
평점 2.90/5 총 30 개의 평점
개발자 https://www.zoomcorder.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://zoomcorder.com
도움말 페이지 URL https://zoomcorder.com/support
개인정보 보호 정책 페이지 URL https://zoomcorder.com/extension/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Meet auto admit",
    "version": "11.0",
    "description": "Google Meet Auto Admit by smashciotechky",
    "icons": {
        "16": "images\/gmadmit16.png",
        "32": "images\/gmadmit32.png",
        "48": "images\/gmadmit48.png",
        "128": "images\/gmadmit128.png"
    },
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ],
            "matches": [
                "https:\/\/*.zoom.us\/*",
                "https:\/\/zoomgov.com\/*",
                "https:\/\/www.goto.com\/*",
                "https:\/\/*.gotowebinar.com\/*",
                "*:\/\/meet.google.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/record.png",
                "\/images\/recimage.png",
                "\/images\/howto.jpg"
            ],
            "matches": [
                "https:\/\/*.zoom.us\/*",
                "https:\/\/zoomgov.com\/*",
                "https:\/\/www.goto.com\/*",
                "https:\/\/*.gotowebinar.com\/*",
                "*:\/\/meet.google.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "images\/gmadmit16.png",
            "32": "images\/gmadmit32.png",
            "48": "images\/gmadmit48.png",
            "128": "images\/gmadmit128.png"
        },
        "default_popup": "popup.html"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}