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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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": [
                ""
            ]
        }
    ]
}