Sesh
Add Sesh directly when creating a meeting from your calendar.
什么是Sesh?
Sesh是由http://sesh.com开发的Chrome扩展程序,该扩展的主要功能是“Add Sesh directly when creating a meeting from your calendar.”。
扩展截图
下载Sesh扩展crx文件
下载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" ] } |