Student Randomizer
Randomly Selects Students
Hvad er Student Randomizer?
Student Randomizer er en Chrome-udvidelse udviklet af SchoolHelper, og dens hovedfunktion er "Randomly Selects Students".
Udvidelsesskærmbilleder
Download Student Randomizer-udvidelses-CRX-fil
Download Student Randomizer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Student Randomizer |
ID | lcipncfbfemopganndembnmjjnhbaomk |
Officiel URL | https://chromewebstore.google.com/detail/student-randomizer/lcipncfbfemopganndembnmjjnhbaomk |
Beskrivelse | Randomly Selects Students |
Filstørrelse | 14.25 KB |
Antal Installationer | 2,391 |
Nuværende Version | 1.6 |
Senest Opdateret | 2019-02-07 |
Udgivelsesdato | 2019-02-07 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | SchoolHelper |
Betalingsmetode | free |
Udvidelseswebsted | https://milandonhowe.github.io/studentSelect/ |
Hjælpeside-URL | https://github.com/MilanDonhowe/studentSelect/issues |
Understøttede Sprog | 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" ] } |