Google Meet Exit Page
Configure the exit page after ending a Google Meet call.
Qu'est-ce que Google Meet Exit Page ?
Google Meet Exit Page est une extension Chrome développée par https://clydedsouza.net, et sa fonction principale est "Configure the exit page after ending a Google Meet call.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Google Meet Exit Page
Téléchargez les fichiers d'extension Google Meet Exit Page au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Google Meet Exit Page |
ID | bjfoplibeabdkfmbanlocafjlbbimgai |
URL Officiel | https://chromewebstore.google.com/detail/google-meet-exit-page/bjfoplibeabdkfmbanlocafjlbbimgai |
Description | Configure the exit page after ending a Google Meet call. |
Taille du Fichier | 10.09 KB |
Nombre d'Installations | 20 |
Version Actuelle | 0.0.5 |
Dernière Mise à Jour | 2022-07-11 |
Date de Publication | 2022-07-05 |
Développeur | https://clydedsouza.net |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/ClydeDz/google-meet-exit-page-chrome-extension |
URL de la Page d'Aide | https://github.com/ClydeDz/google-meet-exit-page-chrome-extension/issues/new/choose |
Langues Prises en Charge | 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" ] } ] } |