Google Meet Exit Page

Configure the exit page after ending a Google Meet call.

O que é Google Meet Exit Page?

Google Meet Exit Page é uma extensão do Chrome desenvolvida por https://clydedsouza.net, e sua principal característica é "Configure the exit page after ending a Google Meet call.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Google Meet Exit Page

Baixe arquivos de extensão Google Meet Exit Page 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

                        Configure the exit page that should be visible after a user ends a Google Meet call. A user will have to click the 'Leave call' button from Google Meet to then be redirected to the other page. This is useful if you always need to visit the same page after every meeting, or have a similar requirement. 

The exit page can be configurable from the extensions' Options page. You can also configure if the exit page needs to open in a new tab or the same tab.                    

Informações Básicas da Extensão

Nome Google Meet Exit Page Google Meet Exit Page
ID bjfoplibeabdkfmbanlocafjlbbimgai
URL Oficial https://chromewebstore.google.com/detail/google-meet-exit-page/bjfoplibeabdkfmbanlocafjlbbimgai
Descrição Configure the exit page after ending a Google Meet call.
Tamanho do Arquivo 10.09 KB
Contagem de Instalações 20
Versão Atual 0.0.5
Última Atualização 2022-07-11
Data de Publicação 2022-07-05
Desenvolvedor https://clydedsouza.net
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/ClydeDz/google-meet-exit-page-chrome-extension
URL da Página de Ajuda https://github.com/ClydeDz/google-meet-exit-page-chrome-extension/issues/new/choose
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Meet Exit Page",
    "description": "Configure the exit page after ending a Google Meet call.",
    "version": "0.0.5",
    "author": "Clyde D'Souza",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "content_scripts.js"
            ]
        }
    ]
}