Sesh

Add Sesh directly when creating a meeting from your calendar.

Sesh là gì?

Sesh là một tiện ích mở rộng Chrome được phát triển bởi http://sesh.com, và tính năng chính của nó là "Add Sesh directly when creating a meeting from your calendar.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sesh

Tải xuống các tệp mở rộng Sesh dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Sesh Sesh
ID olbghkdmdahpldbhmkpiknnpjkdjdeod
URL Chính Thức https://chrome.google.com/webstore/detail/sesh/olbghkdmdahpldbhmkpiknnpjkdjdeod
Mô tả Add Sesh directly when creating a meeting from your calendar.
Kích Thước Tệp 258 KB
Số Lần Cài Đặt 143
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2021-11-12
Ngày Phát Hành 2021-03-13
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển http://sesh.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://sesh.com
URL Trang Trợ Giúp https://sesh.com/support
URL Trang Chính Sách Bảo Mật https://sesh.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}