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": "AI Answers Forms", "version": "1.1.0", "description": "Solves Google forms Quiz using ChatGPT", "permissions": [ "activeTab", "contextMenus", "scripting" ], "host_permissions": [ "*:\/\/docs.google.com\/forms\/*", "*:\/\/localhost\/*" ], "background": { "service_worker": "background.js" }, "action": { "default_title": "AI_Answers" }, "content_scripts": [ { "matches": [ "*:\/\/docs.google.com\/forms\/*" ], "js": [ "main.js" ] } ], "commands": { "getAnswers": { "suggested_key": { "default": "Alt+F", "mac": "Alt+F" }, "description": "Get Answers" }, "toggleAnswers": { "suggested_key": { "default": "Alt+H", "mac": "Alt+H" }, "description": "Show\/Hide Answers" }, "eraseAnswers": { "suggested_key": { "default": "Ctrl+Shift+3", "mac": "Command+Shift+3" }, "description": "Erase Answers" } } }