WebRTC video effect

This extension applies video effects on the camera in WebRTC applications

WebRTC video effect란 무엇입니까?

WebRTC video effect은(는) ticapix에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension applies video effects on the camera in WebRTC applications"입니다.

확장 프로그램 스크린샷

screenshot

WebRTC video effect 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

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