WebRTC Desktop Sharing

WebRTC P2P HQ/HD screen-sharing. Share camera, microphone, speakers, full-screen, or software's screens.

WebRTC Desktop Sharing란 무엇입니까?

WebRTC Desktop Sharing은(는) https://www.webrtc-experiment.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "WebRTC P2P HQ/HD screen-sharing. Share camera, microphone, speakers, full-screen, or software's screens."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

WebRTC Desktop Sharing 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        High Quality peer-to-peer screen sharing:
1. It uses WebRTC
2. It shares screen in 4K/1080p/720p formats
3. You can manage frame-rates/bit-rates as well
4. This extension creates a private room URL; only people who have that URL will see your screen.
5. All WebRTC compatible browsers can view your screen e.g. chrome/firefox/opera on android and desktop; as well as safari on iOS/Mac.
6. This extension uses STUN which means that it will be either 100% peer-to-peer or otherwise it will unable to connect users.
7. This extension supports text-chat as well.
8. This extension supports WebRTC getStats API as well.

This extension is open-sourced here:
https://github.com/muaz-khan/Chrome-Extensions/tree/master/desktopCapture-p2p

Privacy URL: https://github.com/muaz-khan/Chrome-Extensions/blob/master/desktopCapture-p2p/Privacy.md                    

확장 프로그램 기본 정보

이름 WebRTC Desktop Sharing WebRTC Desktop Sharing
ID nkemblooioekjnpfekmjhpgkackcajhg
공식 URL https://chromewebstore.google.com/detail/webrtc-desktop-sharing/nkemblooioekjnpfekmjhpgkackcajhg
설명 WebRTC P2P HQ/HD screen-sharing. Share camera, microphone, speakers, full-screen, or software's screens.
파일 크기 160 KB
설치 횟수 18,799
현재 버전 6.4
최근 업데이트 2022-04-07
출시 날짜 2019-10-20
평점 4.35/5 총 75 개의 평점
개발자 https://www.webrtc-experiment.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://muazkhan.com:9001/
도움말 페이지 URL https://github.com/muaz-khan/Chrome-Extensions/issues
개인정보 보호 정책 페이지 URL https://github.com/muaz-khan/Chrome-Extensions/blob/master/desktopCapture-p2p/Privacy.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WebRTC Desktop Sharing",
    "author": "Muaz Khan",
    "version": "6.4",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "WebRTC P2P HQ\/HD screen-sharing. Share camera, microphone, speakers, full-screen, or software's screens.",
    "homepage_url": "https:\/\/github.com\/muaz-khan\/Chrome-Extensions\/tree\/master\/desktopCapture-p2p",
    "background": {
        "scripts": [
            "background\/helpers\/socket.io.js",
            "background\/helpers\/adapter.js",
            "background\/helpers\/RTCMultiConnection.min.js",
            "background\/helpers\/CodecsHandler.js",
            "background\/helpers\/IceServersHandler.js",
            "background\/helpers\/MultiStreamsMixer.js",
            "background\/helpers\/AntMediaWrapper.js",
            "background\/globals.js",
            "background\/common.js",
            "background\/runtimePort.js",
            "background\/online-offline.js",
            "background\/gotTabCaptureStream.js",
            "background\/gotStream.js",
            "background\/onAccessApproved.js",
            "background\/setupWebRTCConnection.js",
            "background\/shareStreamUsingRTCMultiConnection.js",
            "background\/shareStreamUsingAntMediaServer.js",
            "background\/setDefaults.js",
            "background\/captureDesktop.js",
            "background\/captureCamera.js",
            "background\/captureTabUsingTabCapture.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "images\/desktopCapture22.png",
        "default_title": "Share Your Screen",
        "default_popup": "extension-pages\/dropdown.html"
    },
    "icons": {
        "16": "images\/desktopCapture16.png",
        "22": "images\/desktopCapture22.png",
        "32": "images\/desktopCapture32.png",
        "48": "images\/desktopCapture48.png",
        "128": "images\/desktopCapture128.png"
    },
    "permissions": [
        "desktopCapture",
        "storage",
        "tabs",
        "",
        "tabCapture"
    ],
    "web_accessible_resources": [
        "images\/desktopCapture48.png"
    ],
    "options_ui": {
        "page": "extension-pages\/options.html",
        "chrome_style": true
    }
}