Class Recorder
Common plugin to record and stream desktop over call
Hvad er Class Recorder?
Class Recorder er en Chrome-udvidelse udviklet af Tutorcomp, og dens hovedfunktion er "Common plugin to record and stream desktop over call".
Udvidelsesskærmbilleder
Download Class Recorder-udvidelses-CRX-fil
Download Class Recorder-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Class Recorder |
ID | laiffkppjhlpakgkomocfmiefgomgkhk |
Officiel URL | https://chromewebstore.google.com/detail/class-recorder/laiffkppjhlpakgkomocfmiefgomgkhk |
Beskrivelse | Common plugin to record and stream desktop over call |
Filstørrelse | 217 KB |
Antal Installationer | 69 |
Nuværende Version | 1.0.3 |
Senest Opdateret | 2022-12-21 |
Udgivelsesdato | 2020-11-11 |
Udvikler | Tutorcomp |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://class.tutorcomp.com.kw |
Hjælpeside-URL | https://tutorcomp.com.kw |
URL til Fortrolighedspolitik Side | https://www.tutorcomp.com/terms-and-conditions |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Class Recorder", "short_name": "wbrecorder", "description": "Common plugin to record and stream desktop over call", "version": "1.0.3", "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": [ "*:\/\/media.tutorcomp.com\/*", "*:\/\/media.tutorcomp.com.kw\/*", "*:\/\/tutorcomp.com\/*", "*:\/\/tutorcomp.com.kw\/*", "*:\/\/app.tutorcomp.com\/*", "*:\/\/app.tutorcomp.com.kw\/*", "*:\/\/class.tutorcomp.com\/*", "*:\/\/class.tutorcomp.com.kw\/*", "*:\/\/localhost\/*" ] }, "permissions": [ "desktopCapture", "tabs", "tabCapture" ], "web_accessible_resources": [ "images\/logo16x16.png" ], "content_scripts": [ { "matches": [ "*:\/\/media.tutorcomp.com\/*", "*:\/\/media.tutorcomp.com.kw\/*", "*:\/\/tutorcomp.com\/*", "*:\/\/tutorcomp.com.kw\/*", "*:\/\/app.tutorcomp.com\/*", "*:\/\/app.tutorcomp.com.kw\/*", "*:\/\/class.tutorcomp.com\/*", "*:\/\/class.tutorcomp.com.kw\/*", "*:\/\/localhost\/*" ], "js": [ "content_script.js" ] } ], "externally_connectable": { "matches": [ "*:\/\/media.tutorcomp.com\/*", "*:\/\/media.tutorcomp.com.kw\/*", "*:\/\/tutorcomp.com\/*", "*:\/\/tutorcomp.com.kw\/*", "*:\/\/app.tutorcomp.com\/*", "*:\/\/app.tutorcomp.com.kw\/*", "*:\/\/class.tutorcomp.com\/*", "*:\/\/class.tutorcomp.com.kw\/*", "*:\/\/localhost\/*" ] } } |