Keyboard Shortcuts for Kahoot

Adds keyboard shortcuts to Kahoot.

What is Keyboard Shortcuts for Kahoot?

Keyboard Shortcuts for Kahoot is a Chrome extension developed by Lucas Kellar, and its main feature is "Adds keyboard shortcuts to Kahoot.".

Extension Screenshots

screenshot

Download Keyboard Shortcuts for Kahoot Extension CRX File

Download Keyboard Shortcuts for Kahoot extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Add customizable keyboard shortcuts to Kahoot.

No more clicking. Just set a key for each shape and type to answer Kahoot questions. 

The defaults are:

Triangle/Red: O
Diamond/Blue: P
Circle/Yellow: S
Square/Green: D

Each shape can be changed at any time, even mid game!

Source code available at https://github.com/lkellar/kahoot                    

Extension Basic Information

Name Keyboard Shortcuts for Kahoot Keyboard Shortcuts for Kahoot
ID ncphdofiffmnmnncogihodjcjcodpiac
Official URL https://chromewebstore.google.com/detail/keyboard-shortcuts-for-ka/ncphdofiffmnmnncogihodjcjcodpiac
Description Adds keyboard shortcuts to Kahoot.
File Size 16.63 KB
Installation Count 3,691
Current Version 2021.2
Last Updated 2021-05-18
Publish Date 2021-03-31
Rating 4.00/5 Total 5 Ratings
Developer Lucas Kellar
Email [email protected]
Payment Type free
Extension Website https://lkellar.org/kahoot
Help Page URL https://github.com/lkellar/kahoot/issues
Supported Languages en
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"
    }
}