Sesh
Add Sesh directly when creating a meeting from your calendar.
O que é Sesh?
Sesh é uma extensão do Chrome desenvolvida por http://sesh.com, e sua principal característica é "Add Sesh directly when creating a meeting from your calendar.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Sesh
Baixe arquivos de extensão Sesh no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | olbghkdmdahpldbhmkpiknnpjkdjdeod |
URL Oficial | https://chrome.google.com/webstore/detail/sesh/olbghkdmdahpldbhmkpiknnpjkdjdeod |
Descrição | Add Sesh directly when creating a meeting from your calendar. |
Tamanho do Arquivo | 258 KB |
Contagem de Instalações | 143 |
Versão Atual | 1.0.3 |
Última Atualização | 2021-11-12 |
Data de Publicação | 2021-03-13 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | http://sesh.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://sesh.com |
URL da Página de Ajuda | https://sesh.com/support |
URL da Página de Política de Privacidade | https://sesh.com/privacy |
Idiomas Suportados | 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" ] } |