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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}