Codecademy SCT Viewer
Displays an exercise's SCT
什么是Codecademy SCT Viewer?
Codecademy SCT Viewer是由Alex Craig开发的Chrome扩展程序,该扩展的主要功能是“Displays an exercise's SCT”。
扩展截图
下载Codecademy SCT Viewer扩展crx文件
下载Codecademy SCT Viewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Updates all CC exercises to include a 'Show SCT' button which displays that courses submission correction test. 扩展基本信息
| 名称 | |
| ID | aomhngakklnijmbfboppjgmfpibogbga |
| 官方URL | https://chromewebstore.google.com/detail/codecademy-sct-viewer/aomhngakklnijmbfboppjgmfpibogbga |
| 简介 | Displays an exercise's SCT |
| 文件大小 | 357 KB |
| 安装次数 | 21 |
| 当前版本 | 1.1.1 |
| 更新时间 | 2015-12-23 |
| 上架时间 | 2015-12-23 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Alex Craig |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/A-J-C/CodecademyUpdates/blob/master/Code/SCTViewer.md |
| 支持的语言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Codecademy SCT Viewer",
"description": "Displays an exercise's SCT",
"version": "1.1.1",
"icons": {
"16": "icon_16.png",
"48": "icon_48.png",
"128": "icon_128.png"
},
"permissions": [
"http:\/\/codecademy.com\/"
],
"content_scripts": [
{
"all_frames": true,
"js": [
"jquery.min.js",
"viewer.js"
],
"matches": [
"http:\/\/www.codecademy.com\/*\/courses\/*",
"https:\/\/www.codecademy.com\/*\/courses\/*",
"http:\/\/www.codecademy.com\/courses\/*",
"https:\/\/www.codecademy.com\/courses\/*"
]
}
]
} | |