Mooc Assistant

简单的慕课助手

Qu'est-ce que Mooc Assistant ?

Mooc Assistant est une extension Chrome développée par Helios, et sa fonction principale est "简单的慕课助手".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Mooc Assistant

Téléchargez les fichiers d'extension Mooc Assistant au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        简单的慕课助手

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

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

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

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

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

作者邮箱: [email protected]                    

Informations de Base sur l'Extension

Nom Mooc Assistant Mooc Assistant
ID oebggekgendmoeedkkdkdcdbmfbfeldc
URL Officiel https://chromewebstore.google.com/detail/mooc-assistant/oebggekgendmoeedkkdkdcdbmfbfeldc
Description 简单的慕课助手
Taille du Fichier 178 KB
Nombre d'Installations 2,400
Version Actuelle 2.2.1
Dernière Mise à Jour 2020-05-26
Date de Publication 2020-05-26
Évaluation 4.69/5 Total 16 Évaluations
Développeur Helios
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/unbyte/mooc-assistant
URL de la Page d'Aide https://github.com/unbyte/mooc-assistant
Langues Prises en Charge 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"
            ]
        }
    ]
}