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”。
扩展截图
下载WebRTC video effect扩展crx文件
下载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 |
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" ] } |