Moodle GPT Quiz Solver

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

Was ist Moodle GPT Quiz Solver?

Moodle GPT Quiz Solver ist eine Chrome-Erweiterung, die von bofill3dev entwickelt wurde, und ihr Hauptmerkmal ist "A Chrome extension to generate answers for moodle quizzes using ChatGPT API. Shift + S to hide/show answers".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Moodle GPT Quiz Solver-Erweiterungs-CRX-Datei herunterladen

Laden Sie Moodle GPT Quiz Solver-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Moodle GPT Quiz Solver Moodle GPT Quiz Solver
ID mlkemaonopiomkepkdchdmhhpmhlllaf
Offizielle URL https://chromewebstore.google.com/detail/moodle-gpt-quiz-solver/mlkemaonopiomkepkdchdmhhpmhlllaf
Beschreibung A Chrome extension to generate answers for moodle quizzes using ChatGPT API. Shift + S to hide/show answers
Dateigröße 2.03 MB
Installationsanzahl 134
Aktuelle Version 1.0.0
Letztes Update 2024-01-19
Veröffentlichungsdatum 2024-01-19
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler bofill3dev
E-Mail [email protected]
Zahlungsart in_app
Unterstützte Sprachen 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": [
                ""
            ]
        }
    ]
}