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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.webrtc-experiment.com และคุณลักษณะหลักของมันคือ "WebRTC P2P HQ/HD screen-sharing. Share camera, microphone, speakers, full-screen, or software's screens."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WebRTC Desktop Sharing

ดาวน์โหลดไฟล์ส่วนขยาย WebRTC Desktop Sharing ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
    }
}