Bluejeans/Zoom Closer

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

Co to jest Bluejeans/Zoom Closer?

Bluejeans/Zoom Closer to rozszerzenie Chrome opracowane przez Edgar Gonzalez, a jego główną funkcją jest „This extension automatically closes the launched window for Bluejeans and Zoom meetings.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Bluejeans/Zoom Closer

Pobierz pliki rozszerzeń Bluejeans/Zoom Closer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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).                    

Podstawowe informacje o rozszerzeniu

Nazwa Bluejeans/Zoom Closer Bluejeans/Zoom Closer
ID jnpjcapbahjpooibdheccijcjalacdno
Oficjalny URL https://chromewebstore.google.com/detail/bluejeanszoom-closer/jnpjcapbahjpooibdheccijcjalacdno
Opis This extension automatically closes the launched window for Bluejeans and Zoom meetings.
Rozmiar pliku 16.77 KB
Liczba instalacji 259
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2023-05-31
Data Publikacji 2020-04-24
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Edgar Gonzalez
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/edgar/bluejeans-zoom-closer
Adres URL Strony Pomocy https://github.com/edgar/bluejeans-zoom-closer/issues
Obsługiwane Języki 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"
            ]
        }
    ]
}