WebRTC video effect

This extension applies video effects on the camera in WebRTC applications

¿Qué es WebRTC video effect?

WebRTC video effect es una extensión de Chrome desarrollada por ticapix, y su función principal es "This extension applies video effects on the camera in WebRTC applications".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión WebRTC video effect

Descarga archivos de extensión WebRTC video effect en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre WebRTC video effect WebRTC video effect
ID oeilcibfeihdekhhlopefndagpponjpo
URL Oficial https://chromewebstore.google.com/detail/webrtc-video-effect/oeilcibfeihdekhhlopefndagpponjpo
Descripción This extension applies video effects on the camera in WebRTC applications
Tamaño del Archivo 158 KB
Cantidad de Instalaciones 153
Versión Actual 1.1
Última Actualización 2016-05-18
Fecha de Publicación 2016-05-17
Calificación 2.33/5 Total de 3 Calificaciones
Desarrollador ticapix
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/ticapix/chrome_ext-gum_videofx
Idiomas Soportados 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"
    ]
}