Castle Crowd
Crowd sourced Castle Learning answers
什么是Castle Crowd?
Castle Crowd是由b3zman41开发的Chrome扩展程序,该扩展的主要功能是“Crowd sourced Castle Learning answers”。
扩展截图
下载Castle Crowd扩展crx文件
下载Castle Crowd扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
TL;DR : If someone else has answered a question on castle learning, you will be able to get that answer.
Other people answer, sends to my server, you pull that answer if it exists on server. 扩展基本信息
| 名称 | |
| ID | emgljeihdnlgmdaldbhdpggbdogdjbdh |
| 官方URL | https://chromewebstore.google.com/detail/castle-crowd/emgljeihdnlgmdaldbhdpggbdogdjbdh |
| 简介 | Crowd sourced Castle Learning answers |
| 文件大小 | 146 KB |
| 安装次数 | 320 |
| 当前版本 | 0.0.5 |
| 更新时间 | 2016-02-14 |
| 上架时间 | 2016-02-14 |
| 评分 | 2.38/5 共13次评分 |
| 开发者 | b3zman41 |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Castle Crowd",
"version": "0.0.5",
"manifest_version": 2,
"description": "Crowd sourced Castle Learning answers",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"page_action": {
"default_icon": "icons\/icon16.png",
"default_title": "page action demo",
"default_popup": "src\/page_action\/page_action.html"
},
"permissions": [
"http:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.castlelearning.com\/Review\/CLO\/Student\/Assignment\/Questions*"
],
"js": [
"js\/jquery\/jquery.min.js",
"src\/inject\/inject.js"
],
"css": [
"src\/inject\/inject.css"
]
}
],
"web_accessible_resources": [
"src\/inject\/inject.html"
],
"background": {
"scripts": [
"js\/jquery\/jquery.min.js",
"background\/background.js"
],
"persistent": false
}
} | |