Kahoot AI

Kahoot AI

An extension that uses google to figure out the most likely answer for the kahoot question

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Kahoot AI",
  "version": "1.1.0",
  "description": "An extension that uses google to figure out the most likely answer for the kahoot question ",
  "icons": {
    "48": "assets/icon-48.png",
    "96": "assets/icon-96.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://serpapi.com/*"
  ],
  "action": {
    "default_icon": "assets/icon-32.png",
    "default_title": "Kahoot AI",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://kahoot.it/*",
        "*://www.kahoot.it/*"
      ],
      "css": [
        "libs/toastr.min.css"
      ],
      "js": [
        "libs/jquery.min.js",
        "libs/toastr.min.js",
        "content_scripts/kahoot.js"
      ]
    }
  ]
}