Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "MoodleGPT", "short_name": "MGPT", "version": "7.3", "author": "NotSN", "description": "MoodleGPT uses your own Gemini API key to answer questions (true or false, multiple choice and fill the blanks) in moodle ", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "gemini_answer.js", "content_gemini.js" ] } ], "action": { "default_popup": "popup_gemini.html" }, "permissions": [ "storage", "notifications", "contextMenus" ], "host_permissions": [ "https:\/\/script.google.com\/*" ], "commands": { "extract-quiz-command": { "suggested_key": { "default": "Alt+S", "mac": "Alt+S" }, "description": "Extract Quiz Content (MoodleGPT)" } }, "web_accessible_resources": [ { "resources": [ "QA.json" ], "matches": [ "<all_urls>" ] } ], "icons": { "16": "icon\/Appimagejpg_16x16.png", "32": "icon\/Appimagejpg_32x32.png", "48": "icon\/Appimagejpg_48x48.png", "128": "icon\/Appimagejpg_128x128.png" } }