QuizWhiz+, The Original AI Homework Helper

Ace all quizzes and tests, guaranteed. The original & most accurate AI study assistant. As seen on TikTok.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "content_scripts": [
    {
      "js": [
        "src/content.js"
      ],
      "css": [
        "assets/styles.css"
      ],
      "matches": [
        "https://canvas.instructure.com/*",
        "https://app.tophat.com/*",
        "https://*.moodlecloud.com/*",
        "https://*.blackboard.com/*"
      ]
    }
  ],
  "description": "Ace all quizzes and tests, guaranteed. The original & most accurate AI study assistant. As seen on TikTok.",
  "icons": {
    "128": "assets/icon.png"
  },
  "name": "QuizWhiz+, The Original AI Homework Helper",
  "permissions": [
    "scripting",
    "activeTab",
    "storage"
  ],
  "version": "0.1.0",
  "externally_connectable": {
    "matches": [
      "https://canvas.instructure.com/*",
      "https://quizwhiz.org/*"
    ]
  },
  "web_accessible_resources": [
    {
      "matches": [
        "https://canvas.instructure.com/*",
        "https://quizwhiz.org/*"
      ],
      "resources": [
        "assets/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html"
  }
}