Mooc Assistant
简单的慕课助手
Mooc Assistantとは何ですか?
Mooc AssistantはHeliosによって開発されたChromeの拡張機能で、その主な機能は「简单的慕课助手」です。
拡張機能のスクリーンショット
Mooc Assistant拡張機能のCRXファイルをダウンロード
Mooc Assistant拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
简单的慕课助手
- 中国大学MOOC (icourse163.org)
- 支持自动互评: 指定份数,指定速度,指定评语;自定义随机评语
- 支持视频倍速播放
- 支持秒刷学习进度
- 优学堂 (ulearning.cn)
- 支持获取习题答案
- 支持视频倍速播放
详细使用说明请访问: https://github.com/unbyte/mooc-assistant
有功能建议欢迎提交issue: https://github.com/unbyte/mooc-assistant/issues/new
【注意】优学堂的答案来自于官方习题答案接口,插件作者不对答案正确性做任何保证,同时该接口随时有被官方屏蔽的可能,插件作者不对答案获取的功能有效性做任何保证!
作者邮箱: [email protected] 拡張機能の基本情報
| 名前 | |
| ID | oebggekgendmoeedkkdkdcdbmfbfeldc |
| 公式URL | https://chromewebstore.google.com/detail/mooc-assistant/oebggekgendmoeedkkdkdcdbmfbfeldc |
| 説明 | 简单的慕课助手 |
| ファイルサイズ | 178 KB |
| インストール数 | 2,400 |
| 現在のバージョン | 2.2.1 |
| 最終更新日 | 2020-05-26 |
| 公開日 | 2020-05-26 |
| 評価 | 4.69/5 合計 16 レビュー |
| 開発者 | Helios |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/unbyte/mooc-assistant |
| ヘルプページのURL | https://github.com/unbyte/mooc-assistant |
| 対応言語 | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Mooc Assistant",
"version": "2.2.1",
"icons": {
"16": "assets\/icons\/icon_16x16.png",
"48": "assets\/icons\/icon_48x48.png",
"64": "assets\/icons\/icon_64x64.png",
"128": "assets\/icons\/icon_128x128.png"
},
"description": "\u7b80\u5355\u7684\u6155\u8bfe\u52a9\u624b",
"homepage_url": "https:\/\/github.com\/unbyte\/mooc-assistant",
"short_name": "\u6155\u8bfe\u52a9\u624b",
"permissions": [
"storage",
"*:\/\/www.icourse163.org\/*",
"*:\/\/*.ulearning.cn\/\/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"author": "helios",
"minimum_chrome_version": "49",
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"open_in_tab": true,
"chrome_style": false
},
"background": {
"scripts": [
"js\/background.bundle.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*:\/\/www.icourse163.org\/*"
],
"js": [
"js\/content_netease.bundle.js"
],
"css": [
"css\/content_netease.css"
],
"run_at": "document_start"
},
{
"matches": [
"*:\/\/ua.ulearning.cn\/learnCourse\/*"
],
"js": [
"js\/content_ulearning.bundle.js"
],
"css": [
"css\/content_ulearning.css"
]
}
]
} | |