WebRTC video effect
This extension applies video effects on the camera in WebRTC applications
Co to jest WebRTC video effect?
WebRTC video effect to rozszerzenie Chrome opracowane przez ticapix, a jego główną funkcją jest „This extension applies video effects on the camera in WebRTC applications”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia WebRTC video effect
Pobierz pliki rozszerzeń WebRTC video effect w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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/, ...
Podstawowe informacje o rozszerzeniu
Nazwa | WebRTC video effect |
ID | oeilcibfeihdekhhlopefndagpponjpo |
Oficjalny URL | https://chromewebstore.google.com/detail/webrtc-video-effect/oeilcibfeihdekhhlopefndagpponjpo |
Opis | This extension applies video effects on the camera in WebRTC applications |
Rozmiar pliku | 158 KB |
Liczba instalacji | 153 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2016-05-18 |
Data Publikacji | 2016-05-17 |
Ocena | 2.33/5 Łącznie 3 Oceny |
Deweloper | ticapix |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/ticapix/chrome_ext-gum_videofx |
Obsługiwane Języki | 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" ] } |