Meetingflow calendar extension
Meetingflow is a product to help teams with the best practices for managing customer meetings.
Vad är Meetingflow calendar extension?
Meetingflow calendar extension är en Chrome-tillägg utvecklad av https://meetingflow.com, och dess huvudfunktion är "Meetingflow is a product to help teams with the best practices for managing customer meetings.".
Tilläggsskärmbilder
Ladda ner Meetingflow calendar extension-förlängningens CRX-fil
Ladda ner Meetingflow calendar extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Meetingflow calendar extension |
ID | eglggijabcagpkececaemgliiojkoefg |
Officiell webbadress | https://chromewebstore.google.com/detail/meetingflow-calendar-exte/eglggijabcagpkececaemgliiojkoefg |
Beskrivning | Meetingflow is a product to help teams with the best practices for managing customer meetings. |
Filstorlek | 13.74 KB |
Antal Installationer | 74 |
Aktuell Version | 1.0.3 |
Senast Uppdaterad | 2022-12-09 |
Publiceringsdatum | 2022-07-24 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | https://meetingflow.com |
E-post | [email protected] |
Betalningssätt | free |
Hjälpsida URL | https://meetingflow.com/support |
URL till Sekretesspolicy Sidan | https://meetingflow.com/privacy |
Stödda Språk | 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 } |