Tesse - Share Screen

This extension help you share your screen

Tesse - Share Screen란 무엇입니까?

Tesse - Share Screen은(는) https://tesse.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension help you share your screen"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Tesse - Share Screen 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension helps you to share your screen in a video call to show presentations, photos, and documents.

Tesse.io allows you to start a video call, without the need to download or install anything.

This extension allows you to share your screen with other participants in tesse.io call/chat session, to improve your online meeting efficiency.

You can select the window/apllication you want to share.

This extension was built based on open source: https://github.com/muaz-khan                    

확장 프로그램 기본 정보

이름 Tesse - Share Screen Tesse - Share Screen
ID cgplojjghbkfimkgggajefldkpmaklll
공식 URL https://chromewebstore.google.com/detail/tesse-share-screen/cgplojjghbkfimkgggajefldkpmaklll
설명 This extension help you share your screen
파일 크기 8.71 KB
설치 횟수 33
현재 버전 1.2
최근 업데이트 2018-10-11
출시 날짜 2018-10-11
평점 5.00/5 총 4 개의 평점
개발자 https://tesse.io
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://tesse.io/tessbot
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tesse - Share Screen",
    "author": "Tesse, Inc.",
    "version": "1.2",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "This extension help you share your screen",
    "homepage_url": "https:\/\/tesse.io",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "https:\/\/tesse.io\/*"
            ]
        }
    ],
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    }
}