Keyboard Shortcuts for Kahoot

Adds keyboard shortcuts to Kahoot.

Wat is Keyboard Shortcuts for Kahoot?

Keyboard Shortcuts for Kahoot is een Chrome-extensie ontwikkeld door Lucas Kellar, en de belangrijkste functie is "Adds keyboard shortcuts to Kahoot.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Keyboard Shortcuts for Kahoot

Download Keyboard Shortcuts for Kahoot-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Keyboard Shortcuts for Kahoot Keyboard Shortcuts for Kahoot
ID ncphdofiffmnmnncogihodjcjcodpiac
Officiële URL https://chromewebstore.google.com/detail/keyboard-shortcuts-for-ka/ncphdofiffmnmnncogihodjcjcodpiac
Beschrijving Adds keyboard shortcuts to Kahoot.
Bestandsgrootte 16.63 KB
Aantal Installaties 3,691
Huidige Versie 2021.2
Laatst Bijgewerkt 2021-05-18
Publicatiedatum 2021-03-31
Beoordeling 4.00/5 Totaal 5 Beoordelingen
Ontwikkelaar Lucas Kellar
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://lkellar.org/kahoot
Help Pagina-URL https://github.com/lkellar/kahoot/issues
Ondersteunde Talen 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"
    }
}