Keyboard Shortcuts for Kahoot

Keyboard Shortcuts for Kahoot

Adds keyboard shortcuts to Kahoot.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Keyboard Shortcuts for Kahoot",
  "version": "2021.2",
  "description": "Adds keyboard shortcuts to Kahoot.",
  "background": {
    "scripts": [
      "browser-polyfill.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://kahoot.it/*"
      ],
      "js": [
        "browser-polyfill.js",
        "kahoot.js"
      ]
    }
  ],
  "icons": {
    "48": "icon.png",
    "96": "[email protected]"
  },
  "options_ui": {
    "page": "options/options.html"
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "48": "icon.png",
      "96": "[email protected]"
    },
    "default_title": "Keyboard Shortcuts for Kahoot",
    "default_popup": "options/options.html"
  }
}