WebRTC video effect
This extension applies video effects on the camera in WebRTC applications
Was ist WebRTC video effect?
WebRTC video effect ist eine Chrome-Erweiterung, die von ticapix entwickelt wurde, und ihr Hauptmerkmal ist "This extension applies video effects on the camera in WebRTC applications".
Erweiterungsscreenshots
WebRTC video effect-Erweiterungs-CRX-Datei herunterladen
Laden Sie WebRTC video effect-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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/, ...
Grundlegende Informationen zur Erweiterung
Name | WebRTC video effect |
ID | oeilcibfeihdekhhlopefndagpponjpo |
Offizielle URL | https://chromewebstore.google.com/detail/webrtc-video-effect/oeilcibfeihdekhhlopefndagpponjpo |
Beschreibung | This extension applies video effects on the camera in WebRTC applications |
Dateigröße | 158 KB |
Installationsanzahl | 153 |
Aktuelle Version | 1.1 |
Letztes Update | 2016-05-18 |
Veröffentlichungsdatum | 2016-05-17 |
Bewertung | 2.33/5 Insgesamt 3 Bewertungen |
Entwickler | ticapix |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/ticapix/chrome_ext-gum_videofx |
Unterstützte Sprachen | 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" ] } |