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 |
官方網址 | 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" ] } |