Google Meet Exit Page
Configure the exit page after ending a Google Meet call.
Was ist Google Meet Exit Page?
Google Meet Exit Page ist eine Chrome-Erweiterung, die von https://clydedsouza.net entwickelt wurde, und ihr Hauptmerkmal ist "Configure the exit page after ending a Google Meet call.".
Erweiterungsscreenshots
Google Meet Exit Page-Erweiterungs-CRX-Datei herunterladen
Laden Sie Google Meet Exit Page-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Google Meet Exit Page |
ID | bjfoplibeabdkfmbanlocafjlbbimgai |
Offizielle URL | https://chromewebstore.google.com/detail/google-meet-exit-page/bjfoplibeabdkfmbanlocafjlbbimgai |
Beschreibung | Configure the exit page after ending a Google Meet call. |
Dateigröße | 10.09 KB |
Installationsanzahl | 20 |
Aktuelle Version | 0.0.5 |
Letztes Update | 2022-07-11 |
Veröffentlichungsdatum | 2022-07-05 |
Entwickler | https://clydedsouza.net |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/ClydeDz/google-meet-exit-page-chrome-extension |
Hilfeseite URL | https://github.com/ClydeDz/google-meet-exit-page-chrome-extension/issues/new/choose |
Unterstützte Sprachen | 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" ] } ] } |