Google Meet Exit Page

Configure the exit page after ending a Google Meet call.

什麼是Google Meet Exit Page?

Google Meet Exit Page是由https://clydedsouza.net開發的Chrome擴展程式,該擴展的主要功能是“Configure the exit page after ending a Google Meet call.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Google Meet Exit Page擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}