ChatGPT Wizard

ChatGPT Wizard

Boost your browser with ChatGPT Wizard: instantly solve quizzes, ask ChatGPT, and more.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ChatGPT Wizard",
  "description": "Boost your browser with ChatGPT Wizard: instantly solve quizzes, ask ChatGPT, and more.",
  "version": "1.77",
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "64": "icons/icon-64.png",
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "activeTab"
  ],
  "host_permissions": [
    "https://api.openai.com/*",
    "https://chatgptwizard.click/*"
  ],
  "action": {
    "default_title": "ChatGPT Wizard",
    "default_icon": {
      "16": "icons/icon-16.png",
      "48": "icons/icon-48.png",
      "128": "icons/icon-128.png"
    },
    "default_popup": "popup/index.html"
  },
  "commands": {
    "quiz_solver": {
      "suggested_key": {
        "default": "Ctrl+Shift+S"
      },
      "description": "Capture screenshot"
    },
    "create_prompt": {
      "suggested_key": {
        "default": "Ctrl+Shift+P"
      },
      "description": "Capture screenshot"
    }
  },
  "background": {
    "service_worker": "background/index.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_scripts/index.js"
      ],
      "css": [
        "assets/index-65332caf.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*",
        "assets/*",
        "utils/index.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}