Kahoot-Keys

Bind the Kahoot buttons to keys

Was ist Kahoot-Keys?

Kahoot-Keys ist eine Chrome-Erweiterung, die von Techniko entwickelt wurde, und ihr Hauptmerkmal ist "Bind the Kahoot buttons to keys".

Erweiterungsscreenshots

screenshot

Kahoot-Keys-Erweiterungs-CRX-Datei herunterladen

Laden Sie Kahoot-Keys-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Play Kahoot quizzes by pressing keys which correspond to the buttons on-screen

This extension is not endorsed by Kahoot                    

Grundlegende Informationen zur Erweiterung

Name Kahoot-Keys Kahoot-Keys
ID gngbidnfnlfbmejacjocpphlbahkaljg
Offizielle URL https://chrome.google.com/webstore/detail/kahoot-keys/gngbidnfnlfbmejacjocpphlbahkaljg
Beschreibung Bind the Kahoot buttons to keys
Dateigröße 23.51 KB
Installationsanzahl 1,538
Aktuelle Version 0.3
Letztes Update 2019-01-17
Veröffentlichungsdatum 2019-01-17
Bewertung 3.33/5 Insgesamt 3 Bewertungen
Entwickler Techniko
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Kahoot-Keys",
    "description": "Bind the Kahoot buttons to keys",
    "version": "0.3",
    "icons": {
        "16": "icons\/icon16.png",
        "38": "icons\/icon38.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_popup": "options\/options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/kahoot.it\/*"
            ],
            "js": [
                "lib\/arrive.min.js",
                "lib\/log.min.js",
                "inject.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "permissions": [
        "https:\/\/kahoot.it\/*",
        "*:\/\/*\/*",
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "hot-reload.js"
        ]
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    }
}