Student Randomizer
Randomly Selects Students
Qu'est-ce que Student Randomizer ?
Student Randomizer est une extension Chrome développée par SchoolHelper, et sa fonction principale est "Randomly Selects Students".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Student Randomizer
Téléchargez les fichiers d'extension Student Randomizer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Student Randomizer |
ID | lcipncfbfemopganndembnmjjnhbaomk |
URL Officiel | https://chromewebstore.google.com/detail/student-randomizer/lcipncfbfemopganndembnmjjnhbaomk |
Description | Randomly Selects Students |
Taille du Fichier | 14.25 KB |
Nombre d'Installations | 2,391 |
Version Actuelle | 1.6 |
Dernière Mise à Jour | 2019-02-07 |
Date de Publication | 2019-02-07 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | SchoolHelper |
Type de Paiement | free |
Site Web de l'Extension | https://milandonhowe.github.io/studentSelect/ |
URL de la Page d'Aide | https://github.com/MilanDonhowe/studentSelect/issues |
Langues Prises en Charge | 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" ] } |