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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension to generate answers for moodle quizzes using ChatGPT API. Shift + S to hide/show answers"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Moodle GPT Quiz Solver एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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": [
                ""
            ]
        }
    ]
}