Google Meet Exit Page
Configure the exit page after ending a Google Meet call.
Google Meet Exit Page là gì?
Google Meet Exit Page là một tiện ích mở rộng Chrome được phát triển bởi https://clydedsouza.net, và tính năng chính của nó là "Configure the exit page after ending a Google Meet call.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Google Meet Exit Page
Tải xuống các tệp mở rộng Google Meet Exit Page dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Google Meet Exit Page |
ID | bjfoplibeabdkfmbanlocafjlbbimgai |
URL Chính Thức | https://chromewebstore.google.com/detail/google-meet-exit-page/bjfoplibeabdkfmbanlocafjlbbimgai |
Mô tả | Configure the exit page after ending a Google Meet call. |
Kích Thước Tệp | 10.09 KB |
Số Lần Cài Đặt | 20 |
Phiên Bản Hiện Tại | 0.0.5 |
Cập Nhật Lần Cuối | 2022-07-11 |
Ngày Phát Hành | 2022-07-05 |
Nhà Phát Triển | https://clydedsouza.net |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ClydeDz/google-meet-exit-page-chrome-extension |
URL Trang Trợ Giúp | https://github.com/ClydeDz/google-meet-exit-page-chrome-extension/issues/new/choose |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |