Google Meet ⇔ Slack integration

Real-time Google Meet status on Slack, just like Slack huddles.

Co to jest Google Meet ⇔ Slack integration?

Google Meet ⇔ Slack integration to rozszerzenie Chrome opracowane przez meetslack3, a jego główną funkcją jest „Real-time Google Meet status on Slack, just like Slack huddles.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Google Meet ⇔ Slack integration

Pobierz pliki rozszerzeń Google Meet ⇔ Slack integration 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

                        🚀 Improve workplace communication by connecting Google Meet with Slack!

🌟 Google Meet ⇔ Slack automatically updates your slack status, when you join and exit meetings, even for unscheduled meetings or overflowing meetings.

👉 This is an open source project. View code or please report issues here: https://github.com/vivek-nexus/google-meet-slack-integration/issues                    

Podstawowe informacje o rozszerzeniu

Nazwa Google Meet ⇔ Slack integration Google Meet ⇔ Slack integration
ID kddjlbegfaiogihndmglihcgommbjmkc
Oficjalny URL https://chromewebstore.google.com/detail/google-meet-%E2%87%94-slack-integ/kddjlbegfaiogihndmglihcgommbjmkc
Opis Real-time Google Meet status on Slack, just like Slack huddles.
Rozmiar pliku 48.46 KB
Liczba instalacji 322
Aktualna Wersja 2.0.0
Ostatnia Aktualizacja 2024-01-12
Data Publikacji 2021-11-01
Ocena 4.33/5 Łącznie 3 Oceny
Deweloper meetslack3
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/vivek-nexus/google-meet-slack-integration
Adres URL Strony Pomocy https://github.com/vivek-nexus/google-meet-slack-integration
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Meet \u21d4 Slack integration",
    "version": "2.0.0",
    "manifest_version": 3,
    "description": "Real-time Google Meet status on Slack, just like Slack huddles.",
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/meet.google.com\/"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/meet.google.com\/*",
        "https:\/\/slack.com\/*",
        "https:\/\/www.gstatic.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    }
}