Class Recorder
Common plugin to record and stream desktop over call
什么是Class Recorder?
Class Recorder是由Tutorcomp开发的Chrome扩展程序,该扩展的主要功能是“Common plugin to record and stream desktop over call”。
扩展截图
下载Class Recorder扩展crx文件
下载Class 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.
扩展基本信息
名称 | Class Recorder |
ID | laiffkppjhlpakgkomocfmiefgomgkhk |
官方URL | https://chromewebstore.google.com/detail/class-recorder/laiffkppjhlpakgkomocfmiefgomgkhk |
简介 | Common plugin to record and stream desktop over call |
文件大小 | 217 KB |
安装次数 | 69 |
当前版本 | 1.0.3 |
更新时间 | 2022-12-21 |
上架时间 | 2020-11-11 |
开发者 | Tutorcomp |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://class.tutorcomp.com.kw |
帮助页面URL | https://tutorcomp.com.kw |
隐私政策页面URL | https://www.tutorcomp.com/terms-and-conditions |
支持的语言 | 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\/*" ] } } |