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