Meet Scheduler

A chrome extension that lets you auto join and auto leave your google meet/ zoom meetings

Meet Schedulerคืออะไร?

Meet Scheduler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย DevlUp Labs และคุณลักษณะหลักของมันคือ "A chrome extension that lets you auto join and auto leave your google meet/ zoom meetings"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        This chrome extension creates alarm for your google meet/zoom links by just accepting the link and start and end (optional) time from the Custom tab (IIT Jodhpur students can select the slots and the courses from the Student tab). As soon as the alarm is triggered, the given link gets opened in a new tab (You can even manage the start time in the Settings tab according to your convenience). It will Auto Join the meeting (with mic and camera off) and will also Auto Leave the meeting for you.

To use the auto join feature, turn on the Auto Join switch in the Settings tab and change the User Account to the number corresponding to the account using which you want to join the meeting. The image added for your reference shows that the account corresponding to IIT Jodhpur has index 2 and hence one should select 2 in the User Account drop-down list if they want to use that account. Same logic applies to any other account a user might want to use.
Similarly, for the Auto Leave function to work, the Auto Leave switch must be on in the Settings Tab.

The alarms are categorized according to Today, Tomorrow and Later in the Upcoming Tab. You can even turn them off by just clicking on the green tick-mark besides the alarm.
The Meet Scheduler switch on the top of the pop-up is a switch for the entire extension. If you turn that off, the extension won't trigger any alarm for you.

This project is open sourced at https://github.com/devlup-labs/meet-scheduler
Feel free to collaborate and contribute to the project!

- Made with <3 by Devlup Labs                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Meet Scheduler Meet Scheduler
ID djlpjopjnkojimgiaefgbenbbkkknnln
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/meet-scheduler/djlpjopjnkojimgiaefgbenbbkkknnln
คำอธิบาย A chrome extension that lets you auto join and auto leave your google meet/ zoom meetings
ขนาดไฟล์ 2.36 MB
จำนวนการติดตั้ง 1,137
เวอร์ชันปัจจุบัน 2.3.5
อัปเดตครั้งล่าสุด 2022-08-16
วันที่เผยแพร่ 2020-09-25
คะแนน 4.86/5 รวมทั้งหมด 36 คะแนน
ผู้พัฒนา DevlUp Labs
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/devlup-labs/meet-scheduler/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension that lets you auto join and auto leave your google meet\/ zoom meetings",
    "version": "2.3.5",
    "name": "Meet Scheduler",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "background": {
        "scripts": [
            "background.bundle.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "alarms",
        "https:\/\/meet.google.com\/"
    ],
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}