Keyboard Shortcuts for Kahoot
Adds keyboard shortcuts to Kahoot.
Keyboard Shortcuts for Kahoot क्या है?
Keyboard Shortcuts for Kahoot Lucas Kellar द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds keyboard shortcuts to Kahoot."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Keyboard Shortcuts for Kahoot एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" } } |