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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bofill3dev และคุณลักษณะหลักของมันคือ "A Chrome extension to generate answers for moodle quizzes using ChatGPT API. Shift + S to hide/show answers"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Moodle GPT Quiz Solver

ดาวน์โหลดไฟล์ส่วนขยาย 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": [
                ""
            ]
        }
    ]
}