WebRTC video effect

This extension applies video effects on the camera in WebRTC applications

What is WebRTC video effect?

WebRTC video effect is a Chrome extension developed by ticapix, and its main feature is "This extension applies video effects on the camera in WebRTC applications".

Extension Screenshots

screenshot

Download WebRTC video effect Extension CRX File

Download WebRTC video effect extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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/, ...                    

Extension Basic Information

Name WebRTC video effect WebRTC video effect
ID oeilcibfeihdekhhlopefndagpponjpo
Official URL https://chromewebstore.google.com/detail/webrtc-video-effect/oeilcibfeihdekhhlopefndagpponjpo
Description This extension applies video effects on the camera in WebRTC applications
File Size 158 KB
Installation Count 153
Current Version 1.1
Last Updated 2016-05-18
Publish Date 2016-05-17
Rating 2.33/5 Total 3 Ratings
Developer ticapix
Email [email protected]
Payment Type free
Extension Website https://github.com/ticapix/chrome_ext-gum_videofx
Supported Languages 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"
    ]
}