TutorComp
Plugin to record and stream desktop over call
什么是TutorComp?
TutorComp是由https://tutorcomp.com开发的Chrome扩展程序,该扩展的主要功能是“Plugin to record and stream desktop over call”。
扩展截图
下载TutorComp扩展crx文件
下载TutorComp扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
TutorComp is a global leader in providing personalized online tutoring. We enable students across the World to learn, excel and stay ahead of the knowledge and innovation curve. 扩展基本信息
| 名称 | |
| ID | lelaodglfjcjedhlafokgednigdclcio |
| 官方URL | https://chromewebstore.google.com/detail/tutorcomp/lelaodglfjcjedhlafokgednigdclcio |
| 简介 | Plugin to record and stream desktop over call |
| 文件大小 | 41.47 KB |
| 安装次数 | 267 |
| 当前版本 | 1.3.1 |
| 更新时间 | 2017-12-15 |
| 上架时间 | 2017-12-15 |
| 评分 | 5.00/5 共7次评分 |
| 开发者 | https://tutorcomp.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://www.tutorcomp.com |
| 隐私政策页面URL | https://www.tutorcomp.com/privacy-policy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "TutorComp",
"short_name": "TutorComp",
"description": "Plugin to record and stream desktop over call",
"version": "1.3.1",
"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\/*",
"*:\/\/tutorcomp.com\/*",
"*:\/\/class.tutorcomp.com\/*",
"*:\/\/localhost\/*"
]
},
"permissions": [
"desktopCapture",
"tabs",
"tabCapture",
"notifications"
],
"web_accessible_resources": [
"images\/logo16x16.png"
],
"content_scripts": [
{
"matches": [
"*:\/\/media.tutorcomp.com\/*",
"*:\/\/tutorcomp.com\/*",
"*:\/\/class.tutorcomp.com\/*",
"*:\/\/localhost\/*"
],
"js": [
"content_script.js"
]
}
],
"externally_connectable": {
"matches": [
"*:\/\/media.tutorcomp.com\/*",
"*:\/\/tutorcomp.com\/*",
"*:\/\/class.tutorcomp.com\/*",
"*:\/\/localhost\/*"
]
}
} | |