Mooc Assistant

简单的慕课助手

Cos'è Mooc Assistant?

Mooc Assistant è un'estensione di Chrome sviluppata da Helios, e la sua funzione principale è "简单的慕课助手".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Mooc Assistant

Scarica i file di estensione Mooc Assistant in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        简单的慕课助手

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

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

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

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

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

作者邮箱: [email protected]                    

Informazioni di Base sull'Estensione

Nome Mooc Assistant Mooc Assistant
ID oebggekgendmoeedkkdkdcdbmfbfeldc
URL Ufficiale https://chromewebstore.google.com/detail/mooc-assistant/oebggekgendmoeedkkdkdcdbmfbfeldc
Descrizione 简单的慕课助手
Dimensione del File 178 KB
Conteggio Installazioni 2,400
Versione Corrente 2.2.1
Ultimo Aggiornamento 2020-05-26
Data di Pubblicazione 2020-05-26
Valutazione 4.69/5 Totale 16 Valutazioni
Sviluppatore Helios
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/unbyte/mooc-assistant
URL della Pagina di Aiuto https://github.com/unbyte/mooc-assistant
Lingue Supportate 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"
            ]
        }
    ]
}