Class Recorder
Common plugin to record and stream desktop over call
Co je Class Recorder?
Class Recorder je rozšíření Chrome vyvinuté Tutorcomp, a jeho hlavní funkcí je „Common plugin to record and stream desktop over call“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Class Recorder
Stáhněte si soubory rozšíření Class Recorder ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Class Recorder |
ID | laiffkppjhlpakgkomocfmiefgomgkhk |
Oficiální URL | https://chromewebstore.google.com/detail/class-recorder/laiffkppjhlpakgkomocfmiefgomgkhk |
Popis | Common plugin to record and stream desktop over call |
Velikost souboru | 217 KB |
Počet instalací | 69 |
Aktuální Verze | 1.0.3 |
Poslední Aktualizace | 2022-12-21 |
Datum Vydání | 2020-11-11 |
Vývojář | Tutorcomp |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://class.tutorcomp.com.kw |
URL Stránky Nápovědy | https://tutorcomp.com.kw |
URL Stránky Zásad Ochrany Soukromí | https://www.tutorcomp.com/terms-and-conditions |
Podporované Jazyky | 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\/*" ] } } |