Class Recorder
Common plugin to record and stream desktop over call
Class Recorder là gì?
Class Recorder là một tiện ích mở rộng Chrome được phát triển bởi Tutorcomp, và tính năng chính của nó là "Common plugin to record and stream desktop over call".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Class Recorder
Tải xuống các tệp mở rộng Class Recorder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Class Recorder |
ID | laiffkppjhlpakgkomocfmiefgomgkhk |
URL Chính Thức | https://chromewebstore.google.com/detail/class-recorder/laiffkppjhlpakgkomocfmiefgomgkhk |
Mô tả | Common plugin to record and stream desktop over call |
Kích Thước Tệp | 217 KB |
Số Lần Cài Đặt | 69 |
Phiên Bản Hiện Tại | 1.0.3 |
Cập Nhật Lần Cuối | 2022-12-21 |
Ngày Phát Hành | 2020-11-11 |
Nhà Phát Triển | Tutorcomp |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://class.tutorcomp.com.kw |
URL Trang Trợ Giúp | https://tutorcomp.com.kw |
URL Trang Chính Sách Bảo Mật | https://www.tutorcomp.com/terms-and-conditions |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } } |