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.”。
扩展截图
下载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 |
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" ] } ] } |