WebRTC video effect
This extension applies video effects on the camera in WebRTC applications
WebRTC video effect क्या है?
WebRTC video effect ticapix द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension applies video effects on the camera in WebRTC applications"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में WebRTC video effect एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
आधिकारिक URL | 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" ] } |