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 |
官方網址 | 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" ] } |