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