Meetingflow calendar extension

Meetingflow is a product to help teams with the best practices for managing customer meetings.

Co to jest Meetingflow calendar extension?

Meetingflow calendar extension to rozszerzenie Chrome opracowane przez https://meetingflow.com, a jego główną funkcją jest „Meetingflow is a product to help teams with the best practices for managing customer meetings.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Meetingflow calendar extension

Pobierz pliki rozszerzeń Meetingflow calendar 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

                        Meetingflow brings teams best practices for customer meetings. The Chrome extension enables you to open a Google Calendar event directly in Meetingflow in just once click.                    

Podstawowe informacje o rozszerzeniu

Nazwa Meetingflow calendar extension Meetingflow calendar extension
ID eglggijabcagpkececaemgliiojkoefg
Oficjalny URL https://chromewebstore.google.com/detail/meetingflow-calendar-exte/eglggijabcagpkececaemgliiojkoefg
Opis Meetingflow is a product to help teams with the best practices for managing customer meetings.
Rozmiar pliku 13.74 KB
Liczba instalacji 74
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2022-12-09
Data Publikacji 2022-07-24
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://meetingflow.com
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://meetingflow.com/support
Adres URL Strony Polityki Prywatności https://meetingflow.com/privacy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Meetingflow calendar extension",
    "description": "Meetingflow is a product to help teams with the best practices for managing customer meetings.",
    "version": "1.0.3",
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/calendar\/*"
            ],
            "js": [
                "inject_gcal.js"
            ],
            "run_at": "document_end",
            "css": [
                "style_gcal.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "homepage_url": "https:\/\/app.meetingflow.com\/",
    "action": {
        "default_title": "Meetingflow options",
        "default_icon": "128.png",
        "default_popup": ".\/popup\/popup.html"
    },
    "manifest_version": 3
}