NeverLateAgain - Auto Join Google Meet

Automatically joins GMeet events. Syncs with Google Calendar. No more worrying about schedules. Never Late Again.

NeverLateAgain - Auto Join Google Meetคืออะไร?

NeverLateAgain - Auto Join Google Meet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://nickalden.io และคุณลักษณะหลักของมันคือ "Automatically joins GMeet events. Syncs with Google Calendar. No more worrying about schedules. Never Late Again."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NeverLateAgain - Auto Join Google Meet

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

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

                        Have you ever been late to a Gmeet class for stupid, inconvenient reasons? Or do you ever just wanna sit back and not have to check your schedule every so often? 

Yeah, me too...

NeverLateAgain makes sure you're never late again to any Google Meet Classes. Conveniently displays classes you have next. Joins the Google Meet 2 minutes early. Automatically closes cam & mic, and joins in.

And the best bit, 

You won't have to worry about being late ever again. 

Get A+'s for attending early, and no more worrying about schedules!                    

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

ชื่อ NeverLateAgain - Auto Join Google Meet NeverLateAgain - Auto Join Google Meet
ID ihieolohdbdkcinfmkeigkpemneddpib
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/neverlateagain-auto-join/ihieolohdbdkcinfmkeigkpemneddpib
คำอธิบาย Automatically joins GMeet events. Syncs with Google Calendar. No more worrying about schedules. Never Late Again.
ขนาดไฟล์ 459 KB
จำนวนการติดตั้ง 99
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2021-08-04
วันที่เผยแพร่ 2021-08-03
คะแนน 4.25/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://nickalden.io
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.nickalden.io/neverlate
URL หน้าช่วยเหลือ https://www.nickalden.io/neverlate
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Automatically joins GMeet events. Syncs with Google Calendar. No more worrying about schedules. Never Late Again.",
    "manifest_version": 2,
    "name": "NeverLateAgain - Auto Join Google Meet",
    "version": "1.0.1",
    "oauth2": {
        "client_id": "1095718937705-2jbeckv5md3cl4u2h77fgg0jvk74lqba.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/calendar.events.readonly",
            "profile email"
        ]
    },
    "background": {
        "scripts": [
            ".\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "32": "popuplogo.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "popuplogo.png"
    },
    "permissions": [
        "*:\/\/meet.google.com\/*",
        "identity",
        "identity.email",
        "storage",
        "tabs",
        "alarms"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}