WebRTC video effect

This extension applies video effects on the camera in WebRTC applications

WebRTC video effectคืออะไร?

WebRTC video effect เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ticapix และคุณลักษณะหลักของมันคือ "This extension applies video effects on the camera in WebRTC applications"

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

screenshot

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

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

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

                        This extension install a javascript hook on the navigator.getUserMedia function.

If the web page calls the hook, video effects are loaded and applied on the video stream coming from the camera.

Video effects are based on WebGL with http://threejs.org/

You can try on https://appear.in/, https://simpl.info/getusermedia/, ...                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ WebRTC video effect WebRTC video effect
ID oeilcibfeihdekhhlopefndagpponjpo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/webrtc-video-effect/oeilcibfeihdekhhlopefndagpponjpo
คำอธิบาย This extension applies video effects on the camera in WebRTC applications
ขนาดไฟล์ 158 KB
จำนวนการติดตั้ง 153
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2016-05-18
วันที่เผยแพร่ 2016-05-17
คะแนน 2.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา ticapix
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ticapix/chrome_ext-gum_videofx
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WebRTC video effect",
    "short_name": "webfx",
    "version": "1.1",
    "description": "This extension applies video effects on the camera in WebRTC applications",
    "page_action": {
        "default_icon": "res\/icon_off.png",
        "default_popup": "html\/popup.html",
        "default_title": "WebRTC Video effect"
    },
    "background": {
        "scripts": [
            "js\/util.js",
            "js\/util_inject.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "js": [
                "js\/util.js",
                "js\/util_inject.js",
                "js\/message_proxies.js",
                "js\/webpage_application.js",
                "js\/contentscript.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "lib\/three.min.js"
    ],
    "permissions": [
        "tabs",
        "storage"
    ]
}