Kahoot Keys

Win Kahoot with speed!

Co to jest Kahoot Keys?

Kahoot Keys to rozszerzenie Chrome opracowane przez ebreakey, a jego główną funkcją jest „Win Kahoot with speed!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Kahoot Keys

Pobierz pliki rozszerzeń Kahoot Keys w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension allows you to use the first four number keys on your keyboard to press the buttons in Kahoot rather than use a mouse. This is faster and easier to do meaning, you can win more often!                    

Podstawowe informacje o rozszerzeniu

Nazwa Kahoot Keys Kahoot Keys
ID ppodmhbnneeclellfbmhjlkkojfpjjfn
Oficjalny URL https://chrome.google.com/webstore/detail/kahoot-keys/ppodmhbnneeclellfbmhjlkkojfpjjfn
Opis Win Kahoot with speed!
Rozmiar pliku 574 KB
Liczba instalacji 36,851
Aktualna Wersja 0.3
Ostatnia Aktualizacja 2018-05-09
Data Publikacji 2018-05-09
Ocena 2.00/5 Łącznie 42 Oceny
Deweloper ebreakey
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Kahoot Keys",
    "author": "Ewan Breakey",
    "description": "Win Kahoot with speed!",
    "version": "0.3",
    "icons": {
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/kahoot.it\/*",
                "http:\/\/kahoot.it\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}