Meetingflow calendar extension
Meetingflow is a product to help teams with the best practices for managing customer meetings.
Cos'è Meetingflow calendar extension?
Meetingflow calendar extension è un'estensione di Chrome sviluppata da https://meetingflow.com, e la sua funzione principale è "Meetingflow is a product to help teams with the best practices for managing customer meetings.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Meetingflow calendar extension
Scarica i file di estensione Meetingflow calendar extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Meetingflow calendar extension |
ID | eglggijabcagpkececaemgliiojkoefg |
URL Ufficiale | https://chromewebstore.google.com/detail/meetingflow-calendar-exte/eglggijabcagpkececaemgliiojkoefg |
Descrizione | Meetingflow is a product to help teams with the best practices for managing customer meetings. |
Dimensione del File | 13.74 KB |
Conteggio Installazioni | 74 |
Versione Corrente | 1.0.3 |
Ultimo Aggiornamento | 2022-12-09 |
Data di Pubblicazione | 2022-07-24 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | https://meetingflow.com |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://meetingflow.com/support |
URL della Pagina della Politica sulla Privacy | https://meetingflow.com/privacy |
Lingue Supportate | 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 } |