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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
            ]
        }
    ]
}