Mooc Assistant

简单的慕课助手

What is Mooc Assistant?

Mooc Assistant is a Chrome extension developed by Helios, and its main feature is "简单的慕课助手".

Extension Screenshots

screenshot

Download Mooc Assistant Extension CRX File

Download Mooc Assistant extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        简单的慕课助手

- 中国大学MOOC (icourse163.org)
    - 支持自动互评: 指定份数,指定速度,指定评语;自定义随机评语
    - 支持视频倍速播放
    - 支持秒刷学习进度

- 优学堂 (ulearning.cn)
    - 支持获取习题答案
    - 支持视频倍速播放

详细使用说明请访问: https://github.com/unbyte/mooc-assistant

有功能建议欢迎提交issue: https://github.com/unbyte/mooc-assistant/issues/new

【注意】优学堂的答案来自于官方习题答案接口,插件作者不对答案正确性做任何保证,同时该接口随时有被官方屏蔽的可能,插件作者不对答案获取的功能有效性做任何保证!

作者邮箱: [email protected]                    

Extension Basic Information

Name Mooc Assistant Mooc Assistant
ID oebggekgendmoeedkkdkdcdbmfbfeldc
Official URL https://chromewebstore.google.com/detail/mooc-assistant/oebggekgendmoeedkkdkdcdbmfbfeldc
Description 简单的慕课助手
File Size 178 KB
Installation Count 2,400
Current Version 2.2.1
Last Updated 2020-05-26
Publish Date 2020-05-26
Rating 4.69/5 Total 16 Ratings
Developer Helios
Email [email protected]
Payment Type free
Extension Website https://github.com/unbyte/mooc-assistant
Help Page URL https://github.com/unbyte/mooc-assistant
Supported Languages 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"
            ]
        }
    ]
}