Keyboard Shortcuts for Kahoot

Adds keyboard shortcuts to Kahoot.

Что такое Keyboard Shortcuts for Kahoot?

Keyboard Shortcuts for Kahoot - это расширение Chrome, разработанное Lucas Kellar, и его основная функция - "Adds keyboard shortcuts to Kahoot.".

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

screenshot

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

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

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

                        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                    

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

Название Keyboard Shortcuts for Kahoot Keyboard Shortcuts for Kahoot
ID ncphdofiffmnmnncogihodjcjcodpiac
Официальный URL https://chromewebstore.google.com/detail/keyboard-shortcuts-for-ka/ncphdofiffmnmnncogihodjcjcodpiac
Описание Adds keyboard shortcuts to Kahoot.
Размер файла 16.63 KB
Количество установок 3,691
Текущая Версия 2021.2
Последнее Обновление 2021-05-18
Дата публикации 2021-03-31
Рейтинг 4.00/5 Всего 5 оценок
Разработчик Lucas Kellar
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://lkellar.org/kahoot
URL страницы помощи https://github.com/lkellar/kahoot/issues
Поддерживаемые языки 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"
    }
}