Google Meet Exit Page

Configure the exit page after ending a Google Meet call.

Что такое Google Meet Exit Page?

Google Meet Exit Page - это расширение Chrome, разработанное https://clydedsouza.net, и его основная функция - "Configure the exit page after ending a Google Meet call.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Google Meet Exit Page

Скачайте файлы расширений Google Meet Exit Page в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Google Meet Exit Page Google Meet Exit Page
ID bjfoplibeabdkfmbanlocafjlbbimgai
Официальный URL https://chromewebstore.google.com/detail/google-meet-exit-page/bjfoplibeabdkfmbanlocafjlbbimgai
Описание Configure the exit page after ending a Google Meet call.
Размер файла 10.09 KB
Количество установок 20
Текущая Версия 0.0.5
Последнее Обновление 2022-07-11
Дата публикации 2022-07-05
Разработчик https://clydedsouza.net
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/ClydeDz/google-meet-exit-page-chrome-extension
URL страницы помощи https://github.com/ClydeDz/google-meet-exit-page-chrome-extension/issues/new/choose
Поддерживаемые языки 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"
            ]
        }
    ]
}