Zoom Closer
This extension automatically closes the launched window from Zoom meetings.
Cos'è Zoom Closer?
Zoom Closer è un'estensione di Chrome sviluppata da touchy, e la sua funzione principale è "This extension automatically closes the launched window from Zoom meetings.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Zoom Closer
Scarica i file di estensione Zoom Closer 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
Automatically closes the Zoom Post Attendee window that is created when launching a Zoom meeting from zoom.us. Uses Chrome Context Script to send a message to a background page to close the tab. Requires no special permissions (except access to the page 'https://zoom.us/postattende' and 'https://zoom.us/j/*).
Source: https://github.com/seanstar12/zoom-close
1.7: Updated timeout to 6 seconds (https://github.com/seanstar12/zoom-close/pull/8)
1.6: Merged change from faorfwd to add zoom.us/s/* domain
1.5: Merged change from chriscannon to add zoom.us/j/* domain Informazioni di Base sull'Estensione
| Nome | |
| ID | appjbedfhcmpknanmbndpojcllfaemal |
| URL Ufficiale | https://chrome.google.com/webstore/detail/zoom-closer/appjbedfhcmpknanmbndpojcllfaemal |
| Descrizione | This extension automatically closes the launched window from Zoom meetings. |
| Dimensione del File | 129 KB |
| Conteggio Installazioni | 108,819 |
| Versione Corrente | 1.7 |
| Ultimo Aggiornamento | 2020-05-21 |
| Data di Pubblicazione | 2020-05-21 |
| Valutazione | 3.63/5 Totale 109 Valutazioni |
| Sviluppatore | touchy |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Zoom Closer",
"description": "This extension automatically closes the launched window from Zoom meetings.",
"version": "1.7",
"icons": {
"16": "assets\/icon-16.png",
"48": "assets\/icon-48.png",
"128": "assets\/icon-128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/zoom.us\/postattendee",
"https:\/\/zoom.us\/j\/*",
"https:\/\/*.zoom.us\/j\/*",
"https:\/\/zoom.us\/s\/*",
"https:\/\/*.zoom.us\/s\/*"
],
"js": [
"content.js"
]
}
]
} | |