Student Randomizer
Randomly Selects Students
O que é Student Randomizer?
Student Randomizer é uma extensão do Chrome desenvolvida por SchoolHelper, e sua principal característica é "Randomly Selects Students".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Student Randomizer
Baixe arquivos de extensão Student Randomizer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Student Randomizer |
ID | lcipncfbfemopganndembnmjjnhbaomk |
URL Oficial | https://chromewebstore.google.com/detail/student-randomizer/lcipncfbfemopganndembnmjjnhbaomk |
Descrição | Randomly Selects Students |
Tamanho do Arquivo | 14.25 KB |
Contagem de Instalações | 2,391 |
Versão Atual | 1.6 |
Última Atualização | 2019-02-07 |
Data de Publicação | 2019-02-07 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | SchoolHelper |
Tipo de Pagamento | free |
Site da Extensão | https://milandonhowe.github.io/studentSelect/ |
URL da Página de Ajuda | https://github.com/MilanDonhowe/studentSelect/issues |
Idiomas Suportados | 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" ] } |