Quizwiz - Ace Your HW & Exams, Now With AI

Quizwiz - Ace Your HW & Exams, Now With AI

Ask ChatGPT and rapidly search those last-minute homework and exam questions!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Quizwiz - Ace Your HW & Exams, Now With AI",
  "short_name": "Quizwiz",
  "author": "Quizwiz",
  "version": "2.0.17",
  "description": "Ask ChatGPT and rapidly search those last-minute homework and exam questions!",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon96_128.png"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "scripting",
    "cookies",
    "identity",
    "identity.email",
    "offscreen"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';",
    "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Q"
      }
    },
    "search": {
      "suggested_key": {
        "default": "Ctrl+Shift+Q"
      },
      "description": "Search highlighted question"
    }
  },
  "omnibox": {
    "keyword": "quizwiz"
  },
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    },
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/*",
        "images/icon.svg",
        "static/media/*.woff",
        "static/media/*.woff2",
        "static/media/icon.*.svg",
        "index.html",
        "static/js/*.js",
        "static/css/*.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "manifest_version": 3
}