Class Recorder
Common plugin to record and stream desktop over call
Wat is Class Recorder?
Class Recorder is een Chrome-extensie ontwikkeld door Tutorcomp, en de belangrijkste functie is "Common plugin to record and stream desktop over call".
Extensie Screenshots
Download het CRX-bestand van de extensie Class Recorder
Download Class Recorder-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Class Recorder |
ID | laiffkppjhlpakgkomocfmiefgomgkhk |
Officiële URL | https://chromewebstore.google.com/detail/class-recorder/laiffkppjhlpakgkomocfmiefgomgkhk |
Beschrijving | Common plugin to record and stream desktop over call |
Bestandsgrootte | 217 KB |
Aantal Installaties | 69 |
Huidige Versie | 1.0.3 |
Laatst Bijgewerkt | 2022-12-21 |
Publicatiedatum | 2020-11-11 |
Ontwikkelaar | Tutorcomp |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://class.tutorcomp.com.kw |
Help Pagina-URL | https://tutorcomp.com.kw |
URL van de Privacybeleid Pagina | https://www.tutorcomp.com/terms-and-conditions |
Ondersteunde Talen | 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\/*" ] } } |