Student Randomizer
Randomly Selects Students
Student Randomizer क्या है?
Student Randomizer SchoolHelper द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Randomly Selects Students"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Student Randomizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A chrome extension which randomly selects a student from a given list of students. Student lists are saved based on period and the lists are stored locally by the extension. Made for teachers so they may easily select students in their class to answer a question. The student names are stored locally on the users computer and is not synced. It can be found under the file path %LocalAppData%\Google\Chrome\User Data\Default\Local Extension Settings
एक्सटेंशन की मूल जानकारी
नाम | Student Randomizer |
ID | lcipncfbfemopganndembnmjjnhbaomk |
आधिकारिक URL | https://chromewebstore.google.com/detail/student-randomizer/lcipncfbfemopganndembnmjjnhbaomk |
विवरण | Randomly Selects Students |
फ़ाइल का आकार | 14.25 KB |
स्थापना संख्या | 2,391 |
वर्तमान संस्करण | 1.6 |
अंतिम अपडेट | 2019-02-07 |
प्रकाशन तिथि | 2019-02-07 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | SchoolHelper |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://milandonhowe.github.io/studentSelect/ |
सहायता पृष्ठ URL | https://github.com/MilanDonhowe/studentSelect/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Student Randomizer", "version": "1.6", "description": "Randomly Selects Students", "manifest_version": 2, "icons": { "16": "images\/logo.png", "48": "images\/logo48.png", "96": "images\/logo96.png", "128": "images\/logo128.png" }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_popup": "popup.html", "default_title": "Select a student!" }, "permissions": [ "storage" ] } |