Google Meet auto admit

Google Meet Auto Admit by smashciotechky

Google Meet auto admitคืออะไร?

Google Meet auto admit เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.zoomcorder.com และคุณลักษณะหลักของมันคือ "Google Meet Auto Admit by smashciotechky"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Meet auto admit

ดาวน์โหลดไฟล์ส่วนขยาย Google Meet auto admit ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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'"
    }
}