MuteDeck Google Meet Extension

This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https://mutedeck.com

Co to jest MuteDeck Google Meet Extension?

MuteDeck Google Meet Extension to rozszerzenie Chrome opracowane przez https://mutedeck.com, a jego główną funkcją jest „This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https://mutedeck.com”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia MuteDeck Google Meet Extension

Pobierz pliki rozszerzeń MuteDeck Google Meet Extension 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

                        Control your Google Meet calls with MuteDeck. Install this extension to make Google Meet available inside MuteDeck. Get more information on: https://mutedeck.com                    

Podstawowe informacje o rozszerzeniu

Nazwa MuteDeck Google Meet Extension MuteDeck Google Meet Extension
ID egphpgddoenbpakmaojmnjpjoflmknjk
Oficjalny URL https://chromewebstore.google.com/detail/mutedeck-google-meet-exte/egphpgddoenbpakmaojmnjpjoflmknjk
Opis This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https://mutedeck.com
Rozmiar pliku 62.03 KB
Liczba instalacji 1,785
Aktualna Wersja 1.4
Ostatnia Aktualizacja 2023-05-03
Data Publikacji 2022-10-19
Ocena 2.33/5 Łącznie 3 Oceny
Deweloper https://mutedeck.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://mutedeck.com
Adres URL Strony Pomocy https://mutedeck.com
Adres URL Strony Polityki Prywatności https://mutedeck.com/privacy-policy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MuteDeck Google Meet Extension",
    "version": "1.4",
    "description": "This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https:\/\/mutedeck.com",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/meet.google.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "action": {
        "default_icon": {
            "16": "images\/logo-16.png",
            "32": "images\/logo-32.png",
            "48": "images\/logo-48.png",
            "128": "images\/logo-128.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/logo-16.png",
        "32": "images\/logo-32.png",
        "48": "images\/logo-48.png",
        "128": "images\/logo-128.png"
    }
}