Keyboard Shortcuts for Kahoot

Adds keyboard shortcuts to Kahoot.

什么是Keyboard Shortcuts for Kahoot?

Keyboard Shortcuts for Kahoot是由Lucas Kellar开发的Chrome扩展程序,该扩展的主要功能是“Adds keyboard shortcuts to Kahoot.”。

扩展截图

screenshot

下载Keyboard Shortcuts for Kahoot扩展crx文件

下载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"
    }
}