Secure screen sharing

Share the screen from your computer in a video meeting, to show presentations, photos, and documents. This extension lets you…

Secure screen sharing란 무엇입니까?

Secure screen sharing은(는) https://24sessions.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Share the screen from your computer in a video meeting, to show presentations, photos, and documents. This extension lets you…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Secure screen sharing 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Share the screen from your computer in a video meeting, to show presentations, photos, and documents.

This extension lets you share your screen with other participants in 24sessions meeting room so you can hold efficient online meetings with anyone right in the browser. 

- Select which window/application or Chrome tab to share from your computer
- Participants can double-click to view your shared screen in fullscreen
- Secure screen sharing


Install instruction:

- On the top of the page click "Add to Chrome" this will Install the 24session screen sharing extension.
- After installation, browse back to the meeting room tab window.
- Click "Refresh page" button to activate the screen sharing.
- After page refresh click "Share screen" again and you are good to go.


About 24sessions:

24sessions.com requires a WebRTC-compliant browser such as Chrome, Firefox, Microsoft Edge or Opera, and supports the last two versions of Chrome.                    

확장 프로그램 기본 정보

이름 Secure screen sharing Secure screen sharing
ID akngncmebaenfdgfbmommpnonpidhaod
공식 URL https://chromewebstore.google.com/detail/secure-screen-sharing/akngncmebaenfdgfbmommpnonpidhaod
설명 Share the screen from your computer in a video meeting, to show presentations, photos, and documents. This extension lets you…
파일 크기 37.06 KB
설치 횟수 1,548
현재 버전 2.1.1
최근 업데이트 2019-05-16
출시 날짜 2019-05-16
평점 5.00/5 총 1 개의 평점
개발자 https://24sessions.com
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://24sessions.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Secure screen sharing",
    "version": "2.1.1",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "jquery.min.js",
            "background.js"
        ]
    },
    "permissions": [
        "desktopCapture",
        "activeTab",
        "https:\/\/*.24sessions.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.24sessions.com\/*"
            ],
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "version.txt"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.24sessions.com\/*"
        ]
    }
}