Examine source code of GPT Quiz Assistant

Inspect and view changes in GPT Quiz Assistant source codes across current and past versions
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",
  "description": "Get quick and accurate answers to your quiz questions using AI technology. Just input your text or upload a screenshot!",
  "version": "1.0.2",
  "manifest_version": 3,
  "name": "GPT Quiz Assistant",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "sidePanel",
    "identity"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {},
  "icons": {
    "128": "icon-128.png"
  },
  "side_panel": {
    "default_path": "sidePanel.html"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "icon-128.png"
      ],
      "matches": []
    }
  ]
}