Student Randomizer
Randomly Selects Students
Student Randomizerคืออะไร?
Student Randomizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย SchoolHelper และคุณลักษณะหลักของมันคือ "Randomly Selects Students"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Student Randomizer
ดาวน์โหลดไฟล์ส่วนขยาย Student Randomizer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } |