Quiz Solver

Quiz Solver

Quiz Solver is Your AI-Powered Study Companion.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Quiz Solver",
  "version": "1.6",
  "author": "quizsolverai.com",
  "description": "Quiz Solver is Your AI-Powered Study Companion.",
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus",
    "tabs"
  ],
  "icons": {
    "16": "assets/16.png",
    "32": "assets/32.png",
    "48": "assets/48.png",
    "128": "assets/128.png"
  },
  "host_permissions": [
    "https://quizsolverai.com/*",
    "https://www.quizsolverai.com/*"
  ],
  "action": {
    "default_popup": "index.html",
    "default_title": "Quiz Solver AI",
    "default_icon": {
      "16": "assets/logo.png"
    }
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "content.html",
        "error.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "js": [
        "contentscript.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+E",
        "chromeos": "Ctrl+Shift+E",
        "linux": "Ctrl+Shift+E",
        "mac": "MacCtrl+Shift+E"
      },
      "description": "Open Quiz Solver"
    },
    "run_quickSnapshot": {
      "suggested_key": {
        "default": "Ctrl+Shift+Q",
        "mac": "MacCtrl+Shift+Q"
      },
      "description": "Run Quick Snapshot"
    }
  }
}