Google Meet Exit Page
Configure the exit page after ending a Google Meet call.
Cos'è Google Meet Exit Page?
Google Meet Exit Page è un'estensione di Chrome sviluppata da https://clydedsouza.net, e la sua funzione principale è "Configure the exit page after ending a Google Meet call.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Google Meet Exit Page
Scarica i file di estensione Google Meet Exit Page in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Google Meet Exit Page |
ID | bjfoplibeabdkfmbanlocafjlbbimgai |
URL Ufficiale | https://chromewebstore.google.com/detail/google-meet-exit-page/bjfoplibeabdkfmbanlocafjlbbimgai |
Descrizione | Configure the exit page after ending a Google Meet call. |
Dimensione del File | 10.09 KB |
Conteggio Installazioni | 20 |
Versione Corrente | 0.0.5 |
Ultimo Aggiornamento | 2022-07-11 |
Data di Pubblicazione | 2022-07-05 |
Sviluppatore | https://clydedsouza.net |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/ClydeDz/google-meet-exit-page-chrome-extension |
URL della Pagina di Aiuto | https://github.com/ClydeDz/google-meet-exit-page-chrome-extension/issues/new/choose |
Lingue Supportate | 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" ] } ] } |