NeverLateAgain - Auto Join Google Meet

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

O que é NeverLateAgain - Auto Join Google Meet?

NeverLateAgain - Auto Join Google Meet é uma extensão do Chrome desenvolvida por https://nickalden.io, e sua principal característica é "Automatically joins GMeet events. Syncs with Google Calendar. No more worrying about schedules. Never Late Again.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão NeverLateAgain - Auto Join Google Meet

Baixe arquivos de extensão NeverLateAgain - Auto Join Google Meet no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome NeverLateAgain - Auto Join Google Meet NeverLateAgain - Auto Join Google Meet
ID ihieolohdbdkcinfmkeigkpemneddpib
URL Oficial https://chromewebstore.google.com/detail/neverlateagain-auto-join/ihieolohdbdkcinfmkeigkpemneddpib
Descrição Automatically joins GMeet events. Syncs with Google Calendar. No more worrying about schedules. Never Late Again.
Tamanho do Arquivo 459 KB
Contagem de Instalações 99
Versão Atual 1.0.1
Última Atualização 2021-08-04
Data de Publicação 2021-08-03
Classificação 4.25/5 Total de 4 Avaliações
Desenvolvedor https://nickalden.io
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.nickalden.io/neverlate
URL da Página de Ajuda https://www.nickalden.io/neverlate
Idiomas Suportados 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"
            ]
        }
    ]
}