Sesh
Add Sesh directly when creating a meeting from your calendar.
Qu'est-ce que Sesh ?
Sesh est une extension Chrome développée par http://sesh.com, et sa fonction principale est "Add Sesh directly when creating a meeting from your calendar.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Sesh
Téléchargez les fichiers d'extension Sesh au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Better meetings = better day! ⏱ Automatic timekeeping—with audio cues ✅ Action items are sent to all participants 🔥 Ready-made icebreakers and more 📋 Pick an agenda template, if needed 🗳 Drive outcomes with anonymous voting 🔁 Optimized for recurring meetings Sesh is transforming meetings with a new approach that helps you stay on track, get more done, and engage everyone. With the Sesh Chrome extension, adding a Sesh to your meeting is just one click, right from your calendar.
Informations de Base sur l'Extension
Nom | |
ID | olbghkdmdahpldbhmkpiknnpjkdjdeod |
URL Officiel | https://chrome.google.com/webstore/detail/sesh/olbghkdmdahpldbhmkpiknnpjkdjdeod |
Description | Add Sesh directly when creating a meeting from your calendar. |
Taille du Fichier | 258 KB |
Nombre d'Installations | 143 |
Version Actuelle | 1.0.3 |
Dernière Mise à Jour | 2021-11-12 |
Date de Publication | 2021-03-13 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | http://sesh.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://sesh.com |
URL de la Page d'Aide | https://sesh.com/support |
URL de la Page de Politique de Confidentialité | https://sesh.com/privacy |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sesh", "version": "1.0.3", "description": "Add Sesh directly when creating a meeting from your calendar.", "manifest_version": 2, "browser_action": { "default_icon": { "16": "images\/Logo16.png", "32": "images\/Logo32.png", "48": "images\/Logo48.png", "128": "images\/Logo128.png" }, "default_title": "Sesh" }, "icons": { "16": "images\/Logo16.png", "32": "images\/Logo32.png", "48": "images\/Logo48.png", "128": "images\/Logo128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/*" ], "js": [ "entrypoint.js" ], "css": [ "main.css" ] } ], "web_accessible_resources": [ "main.js", "analytics.js", "auth0Lock.js", "api.js" ] } |