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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Sesh 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Sesh Sesh
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"
    ]
}