Keyboard Shortcuts for Kahoot
Adds keyboard shortcuts to Kahoot.
Keyboard Shortcuts for Kahoot là gì?
Keyboard Shortcuts for Kahoot là một tiện ích mở rộng Chrome được phát triển bởi Lucas Kellar, và tính năng chính của nó là "Adds keyboard shortcuts to Kahoot.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Keyboard Shortcuts for Kahoot
Tải xuống các tệp mở rộng Keyboard Shortcuts for Kahoot dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Keyboard Shortcuts for Kahoot |
ID | ncphdofiffmnmnncogihodjcjcodpiac |
URL Chính Thức | https://chromewebstore.google.com/detail/keyboard-shortcuts-for-ka/ncphdofiffmnmnncogihodjcjcodpiac |
Mô tả | Adds keyboard shortcuts to Kahoot. |
Kích Thước Tệp | 16.63 KB |
Số Lần Cài Đặt | 3,691 |
Phiên Bản Hiện Tại | 2021.2 |
Cập Nhật Lần Cuối | 2021-05-18 |
Ngày Phát Hành | 2021-03-31 |
Đánh Giá | 4.00/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | Lucas Kellar |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://lkellar.org/kahoot |
URL Trang Trợ Giúp | https://github.com/lkellar/kahoot/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |