EasyKahoot

EasyKahoot

Get the answers to any Kahoot quiz in seconds.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "EasyKahoot",
  "description": "Get the answers to any Kahoot quiz in seconds.",
  "version": "1.0.0",
  "action": {
    "default_popup": "index.html"
  },
  "host_permissions": [
    "*://*.kahoot.it/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.kahoot.it/*"
      ],
      "js": [
        "content.js"
      ]
    },
    {
      "matches": [
        "*://*.easykahoot.com/*"
      ],
      "js": [
        "auth.js"
      ]
    }
  ],
  "icons": {
    "16": "assets/images/icon16.png",
    "32": "assets/images/icon32.png",
    "48": "assets/images/icon48.png",
    "128": "assets/images/icon128.png"
  }
}