Sesh
Add Sesh directly when creating a meeting from your calendar.
Что такое Sesh?
Sesh - это расширение Chrome, разработанное http://sesh.com, и его основная функция - "Add Sesh directly when creating a meeting from your calendar.".
Снимки экрана расширения
Скачать файл CRX расширения Sesh
Скачайте файлы расширений Sesh в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | |
ID | olbghkdmdahpldbhmkpiknnpjkdjdeod |
Официальный URL | https://chrome.google.com/webstore/detail/sesh/olbghkdmdahpldbhmkpiknnpjkdjdeod |
Описание | Add Sesh directly when creating a meeting from your calendar. |
Размер файла | 258 KB |
Количество установок | 143 |
Текущая Версия | 1.0.3 |
Последнее Обновление | 2021-11-12 |
Дата публикации | 2021-03-13 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | http://sesh.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://sesh.com |
URL страницы помощи | https://sesh.com/support |
URL страницы политики конфиденциальности | https://sesh.com/privacy |
Поддерживаемые языки | 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" ] } |