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 |
Eメール | [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" ] } ] } |