Kahoot Keys

Win Kahoot with speed!

Что такое Kahoot Keys?

Kahoot Keys - это расширение Chrome, разработанное ebreakey, и его основная функция - "Win Kahoot with speed!".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Kahoot Keys

Скачайте файлы расширений Kahoot Keys в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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!                    

Основная информация о расширении

Название Kahoot Keys Kahoot Keys
ID ppodmhbnneeclellfbmhjlkkojfpjjfn
Официальный URL https://chrome.google.com/webstore/detail/kahoot-keys/ppodmhbnneeclellfbmhjlkkojfpjjfn
Описание Win Kahoot with speed!
Размер файла 574 KB
Количество установок 36,851
Текущая Версия 0.3
Последнее Обновление 2018-05-09
Дата публикации 2018-05-09
Рейтинг 2.00/5 Всего 42 оценок
Разработчик ebreakey
Тип оплаты free
Поддерживаемые языки 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"
            ]
        }
    ]
}