WebRTC video effect
This extension applies video effects on the camera in WebRTC applications
Qu'est-ce que WebRTC video effect ?
WebRTC video effect est une extension Chrome développée par ticapix, et sa fonction principale est "This extension applies video effects on the camera in WebRTC applications".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension WebRTC video effect
Téléchargez les fichiers d'extension WebRTC video effect au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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/, ...
Informations de Base sur l'Extension
Nom | WebRTC video effect |
ID | oeilcibfeihdekhhlopefndagpponjpo |
URL Officiel | https://chromewebstore.google.com/detail/webrtc-video-effect/oeilcibfeihdekhhlopefndagpponjpo |
Description | This extension applies video effects on the camera in WebRTC applications |
Taille du Fichier | 158 KB |
Nombre d'Installations | 153 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2016-05-18 |
Date de Publication | 2016-05-17 |
Évaluation | 2.33/5 Total 3 Évaluations |
Développeur | ticapix |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/ticapix/chrome_ext-gum_videofx |
Langues Prises en Charge | 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" ] } |