Meet Scheduler

An extension to start meetings automatically

O que é Meet Scheduler?

Meet Scheduler é uma extensão do Chrome desenvolvida por Akshat, e sua principal característica é "An extension to start meetings automatically".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Meet Scheduler

Baixe arquivos de extensão Meet Scheduler 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

                        Meetimely is the extension for online classes. 

Avoid fumbling with meeting links and times and missing your important lecture. Avoid that moment when you realise you forgot to leave the meeting when it ended hours ago.

Just add your meeting link, time and duration and sit back as it is handled for you.

New: Save and share your meeting details with others!                    

Informações Básicas da Extensão

Nome Meet Scheduler Meet Scheduler
ID aenhmmfelkmdlihmaiblnhdmfopmbonc
URL Oficial https://chromewebstore.google.com/detail/meet-scheduler/aenhmmfelkmdlihmaiblnhdmfopmbonc
Descrição An extension to start meetings automatically
Tamanho do Arquivo 105 KB
Contagem de Instalações 56
Versão Atual 0.1.4
Última Atualização 2022-02-02
Data de Publicação 2021-08-14
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Akshat
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://akshat-oke.github.io/privacy.html
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Meet Scheduler",
    "version": "0.1.4",
    "description": "An extension to start meetings automatically",
    "manifest_version": 3,
    "icons": {
        "48": "icon48.png"
    },
    "permissions": [
        "storage",
        "alarms",
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Schedule meets",
        "default_popup": "popup\/popup.html"
    },
    "options_page": "options_page\/options_page.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "css": [
                "google-meet.css"
            ],
            "js": [
                "meet_script.js",
                "endCall-script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "google-meet.html"
            ],
            "matches": [
                "https:\/\/meet.google.com\/*",
                "https:\/\/www.google.com\/*"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/localhost\/*",
            "https:\/\/*.jeenius.gq\/*"
        ]
    }
}