Keyboard Shortcuts for Kahoot

Adds keyboard shortcuts to Kahoot.

Qu'est-ce que Keyboard Shortcuts for Kahoot ?

Keyboard Shortcuts for Kahoot est une extension Chrome développée par Lucas Kellar, et sa fonction principale est "Adds keyboard shortcuts to Kahoot.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Keyboard Shortcuts for Kahoot

Téléchargez les fichiers d'extension Keyboard Shortcuts for Kahoot au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Keyboard Shortcuts for Kahoot Keyboard Shortcuts for Kahoot
ID ncphdofiffmnmnncogihodjcjcodpiac
URL Officiel https://chromewebstore.google.com/detail/keyboard-shortcuts-for-ka/ncphdofiffmnmnncogihodjcjcodpiac
Description Adds keyboard shortcuts to Kahoot.
Taille du Fichier 16.63 KB
Nombre d'Installations 3,691
Version Actuelle 2021.2
Dernière Mise à Jour 2021-05-18
Date de Publication 2021-03-31
Évaluation 4.00/5 Total 5 Évaluations
Développeur Lucas Kellar
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://lkellar.org/kahoot
URL de la Page d'Aide https://github.com/lkellar/kahoot/issues
Langues Prises en Charge 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"
    }
}