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 |
Eメール | [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" ] } |