Whiteboard Recorder
Common plugin to record and stream desktop over call
Τι είναι το Whiteboard Recorder;
Το Whiteboard Recorder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Tutorcomp, και η κύρια λειτουργία του είναι "Common plugin to record and stream desktop over call".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Whiteboard Recorder
Λήψη αρχείων επέκτασης Whiteboard Recorder σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension captures and streams the whiteboard and video of an online class ,which is saved in a server as the recording of that class. Users need to install this to record the classes for viewing it later.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Whiteboard Recorder |
ID | klhbchffhliodpgjjmpgkphadlofoodh |
Επίσημο URL | https://chromewebstore.google.com/detail/whiteboard-recorder/klhbchffhliodpgjjmpgkphadlofoodh |
Περιγραφή | Common plugin to record and stream desktop over call |
Μέγεθος Αρχείου | 55.46 KB |
Αριθμός Εγκαταστάσεων | 238 |
Τρέχουσα Έκδοση | 1.0.2 |
Τελευταία Ενημέρωση | 2021-12-23 |
Ημερομηνία Δημοσίευσης | 2021-12-22 |
Προγραμματιστής | Tutorcomp |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Whiteboard Recorder", "short_name": "wbrecorder", "description": "Common plugin to record and stream desktop over call", "version": "1.0.2", "minimum_chrome_version": "34", "icons": { "16": "images\/logo16x16.png", "48": "images\/logo48x48.png", "128": "images\/logo128x128.png" }, "browser_action": { "default_icon": "images\/logo16x16.png", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js", "socket.io.js", "recorder.js", "MediaStreamRecorder.js" ], "matches": [ "*:\/\/demotest.tutorcomp.com\/*", "*:\/\/media.tutorcomp.com\/*", "*:\/\/eclassmedia.empay.ae\/*", "*:\/\/eclassmedia.test.empay.ae\/*", "*:\/\/testmedia.tutorcomp.com\/*", "*:\/\/tutorcomp.com\/*", "*:\/\/demo.tutorcomp.com\/*", "*:\/\/app.tutorcomp.com\/*", "*:\/\/homeschooling.empay.ae\/*", "*:\/\/homeschooling.test.empay.ae\/*", "*:\/\/elearning.test.empay.ae\/*", "*:\/\/testing.tutorcomp.com\/*", "*:\/\/democlass.tutorcomp.com\/*", "*:\/\/class.tutorcomp.com\/*", "*:\/\/eclass.empay.ae\/*", "*:\/\/eclass.test.empay.ae\/*", "*:\/\/testclass.tutorcomp.com\/*", "*:\/\/localhost\/*" ] }, "permissions": [ "desktopCapture", "tabs", "tabCapture" ], "web_accessible_resources": [ "images\/logo16x16.png" ], "content_scripts": [ { "matches": [ "*:\/\/demotest.tutorcomp.com\/*", "*:\/\/media.tutorcomp.com\/*", "*:\/\/eclassmedia.empay.ae\/*", "*:\/\/eclassmedia.test.empay.ae\/*", "*:\/\/testmedia.tutorcomp.com\/*", "*:\/\/tutorcomp.com\/*", "*:\/\/demo.tutorcomp.com\/*", "*:\/\/app.tutorcomp.com\/*", "*:\/\/homeschooling.empay.ae\/*", "*:\/\/homeschooling.test.empay.ae\/*", "*:\/\/elearning.test.empay.ae\/*", "*:\/\/testing.tutorcomp.com\/*", "*:\/\/democlass.tutorcomp.com\/*", "*:\/\/class.tutorcomp.com\/*", "*:\/\/eclass.empay.ae\/*", "*:\/\/eclass.test.empay.ae\/*", "*:\/\/testclass.tutorcomp.com\/*", "*:\/\/localhost\/*" ], "js": [ "content_script.js" ] } ], "externally_connectable": { "matches": [ "*:\/\/demotest.tutorcomp.com\/*", "*:\/\/media.tutorcomp.com\/*", "*:\/\/eclassmedia.empay.ae\/*", "*:\/\/eclassmedia.test.empay.ae\/*", "*:\/\/testmedia.tutorcomp.com\/*", "*:\/\/tutorcomp.com\/*", "*:\/\/demo.tutorcomp.com\/*", "*:\/\/app.tutorcomp.com\/*", "*:\/\/homeschooling.empay.ae\/*", "*:\/\/homeschooling.test.empay.ae\/*", "*:\/\/elearning.test.empay.ae\/*", "*:\/\/testing.tutorcomp.com\/*", "*:\/\/democlass.tutorcomp.com\/*", "*:\/\/class.tutorcomp.com\/*", "*:\/\/eclass.test.empay.ae\/*", "*:\/\/eclass.empay.ae\/*", "*:\/\/testclass.tutorcomp.com\/*", "*:\/\/localhost\/*" ] } } |