Bluejeans/Zoom Closer

This extension automatically closes the launched window for Bluejeans and Zoom meetings.

Cos'è Bluejeans/Zoom Closer?

Bluejeans/Zoom Closer è un'estensione di Chrome sviluppata da Edgar Gonzalez, e la sua funzione principale è "This extension automatically closes the launched window for Bluejeans and Zoom meetings.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Bluejeans/Zoom Closer

Scarica i file di estensione Bluejeans/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 Bluejeans/Zoom tabs that are created when launching a Bluejeans or Zoom meeting. 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 with Bluejeans and Zoom URLs).                    

Informazioni di Base sull'Estensione

Nome Bluejeans/Zoom Closer Bluejeans/Zoom Closer
ID jnpjcapbahjpooibdheccijcjalacdno
URL Ufficiale https://chromewebstore.google.com/detail/bluejeanszoom-closer/jnpjcapbahjpooibdheccijcjalacdno
Descrizione This extension automatically closes the launched window for Bluejeans and Zoom meetings.
Dimensione del File 16.77 KB
Conteggio Installazioni 259
Versione Corrente 0.1
Ultimo Aggiornamento 2023-05-31
Data di Pubblicazione 2020-04-24
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Edgar Gonzalez
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/edgar/bluejeans-zoom-closer
URL della Pagina di Aiuto https://github.com/edgar/bluejeans-zoom-closer/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bluejeans\/Zoom Closer",
    "description": "This extension automatically closes the launched window for Bluejeans and Zoom meetings.",
    "version": "0.1",
    "icons": {
        "16": "assets\/icon-16.png",
        "32": "assets\/icon-32.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\/*",
                "https:\/\/bluejeans.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}