Meetingflow calendar extension

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

Was ist Meetingflow calendar extension?

Meetingflow calendar extension ist eine Chrome-Erweiterung, die von https://meetingflow.com entwickelt wurde, und ihr Hauptmerkmal ist "Meetingflow is a product to help teams with the best practices for managing customer meetings.".

Erweiterungsscreenshots

screenshot

Meetingflow calendar extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Meetingflow calendar extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Meetingflow calendar extension Meetingflow calendar extension
ID eglggijabcagpkececaemgliiojkoefg
Offizielle URL https://chromewebstore.google.com/detail/meetingflow-calendar-exte/eglggijabcagpkececaemgliiojkoefg
Beschreibung Meetingflow is a product to help teams with the best practices for managing customer meetings.
Dateigröße 13.74 KB
Installationsanzahl 74
Aktuelle Version 1.0.3
Letztes Update 2022-12-09
Veröffentlichungsdatum 2022-07-24
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://meetingflow.com
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://meetingflow.com/support
URL der Datenschutzrichtlinien-Seite https://meetingflow.com/privacy
Unterstützte Sprachen 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
}