WebRTC video effect
This extension applies video effects on the camera in WebRTC applications
WebRTC video effect là gì?
WebRTC video effect là một tiện ích mở rộng Chrome được phát triển bởi ticapix, và tính năng chính của nó là "This extension applies video effects on the camera in WebRTC applications".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng WebRTC video effect
Tải xuống các tệp mở rộng WebRTC video effect dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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/, ...
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | WebRTC video effect |
ID | oeilcibfeihdekhhlopefndagpponjpo |
URL Chính Thức | https://chromewebstore.google.com/detail/webrtc-video-effect/oeilcibfeihdekhhlopefndagpponjpo |
Mô tả | This extension applies video effects on the camera in WebRTC applications |
Kích Thước Tệp | 158 KB |
Số Lần Cài Đặt | 153 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2016-05-18 |
Ngày Phát Hành | 2016-05-17 |
Đánh Giá | 2.33/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | ticapix |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ticapix/chrome_ext-gum_videofx |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |