Moodle GPT Quiz Solver

A Chrome extension to generate answers for moodle quizzes using ChatGPT API. Shift + S to hide/show answers

什么是Moodle GPT Quiz Solver?

Moodle GPT Quiz Solver是由bofill3dev开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension to generate answers for moodle quizzes using ChatGPT API. Shift + S to hide/show answers”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Moodle GPT Quiz Solver扩展crx文件

下载Moodle GPT Quiz Solver扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Moodle GPT Quiz Solver is a tool that allows you to quickly and easily generate solutions for your Moodle quizzes through the OpenAI API. It enables generating solutions using OpenAI's leading language models. It also leverages the new OpenAI Assistant API to work with files, which you can upload and delete through the extension's interface, and use them to generate answers based on the information contained in them.

Among the main supported file formats for the use of the "files" section, you can find: .pdf, .docx, .txt, .pptx. However, you can find a comprehensive list of all allowed file types in the following OpenAI documentation: https://platform.openai.com/docs/assistants/tools/supported-files.


Logo designed using resources from flaticon.com                    

扩展基本信息

名称 Moodle GPT Quiz Solver Moodle GPT Quiz Solver
ID mlkemaonopiomkepkdchdmhhpmhlllaf
官方URL https://chromewebstore.google.com/detail/moodle-gpt-quiz-solver/mlkemaonopiomkepkdchdmhhpmhlllaf
简介 A Chrome extension to generate answers for moodle quizzes using ChatGPT API. Shift + S to hide/show answers
文件大小 2.03 MB
安装次数 134
当前版本 1.0.0
更新时间 2024-01-19
上架时间 2024-01-19
评分 5.00/5 共2次评分
开发者 bofill3dev
电子邮箱 [email protected]
付费类型 in_app
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Moodle GPT Quiz Solver",
    "version": "1.0.0",
    "description": "A Chrome extension to generate answers for moodle quizzes using ChatGPT API. Shift + S to hide\/show answers",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "geco2.png",
        "48": "geco2.png",
        "128": "geco2.png"
    },
    "action": {
        "default_popup": "index.html",
        "default_title": "Quiz Solver"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "stylesExt.css"
            ],
            "js": [
                "contentScript.js",
                "responseGen.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "Roboto-Medium-webfont.woff",
                "geco2.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}