Student Randomizer
Randomly Selects Students
ما هو Student Randomizer؟
Student Randomizer هو إضافة Chrome تم تطويرها بواسطة SchoolHelper، والميزة الرئيسية لها هي "Randomly Selects Students".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Student Randomizer
قم بتنزيل ملفات الامتداد Student Randomizer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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/ |
عنوان صفحة المساعدة | 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" ] } |