Think Exam
Capture full-screen on thinkexam test panel
什么是Think Exam?
Think Exam是由https://www.thinkexam.com开发的Chrome扩展程序,该扩展的主要功能是“Capture full-screen on thinkexam test panel”。
扩展截图
下载Think Exam扩展crx文件
下载Think Exam扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | bbebbhmelpcfmijoanocdliephmoahln |
| 官方URL | https://chromewebstore.google.com/detail/think-exam/bbebbhmelpcfmijoanocdliephmoahln |
| 简介 | Capture full-screen on thinkexam test panel |
| 文件大小 | 5.35 KB |
| 安装次数 | 68,149 |
| 当前版本 | 1.1 |
| 更新时间 | 2019-01-23 |
| 上架时间 | 2019-01-23 |
| 评分 | 1.41/5 共27次评分 |
| 开发者 | https://www.thinkexam.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://www.thinkexam.com |
| 帮助页面URL | https://support.thinkexam.com/hc/en-us |
| 隐私政策页面URL | https://www.thinkexam.com/terms-and-condition |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Think Exam",
"author": "Hari Prasad Sharma",
"version": "1.1",
"manifest_version": 2,
"minimum_chrome_version": "34",
"description": "Capture full-screen on thinkexam test panel",
"homepage_url": "https:\/\/thinkexam.com",
"background": {
"scripts": [
"background-script.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"https:\/\/www.webrtc-experiment.com\/*",
"https:\/\/*.thinkexam.com\/*"
]
}
],
"icons": {
"48": "icon.png"
},
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"icon.png"
]
} | |