Student Randomizer

Randomly Selects Students

Vad är Student Randomizer?

Student Randomizer är en Chrome-tillägg utvecklad av SchoolHelper, och dess huvudfunktion är "Randomly Selects Students".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Student Randomizer-förlängningens CRX-fil

Ladda ner Student Randomizer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Student Randomizer Student Randomizer
ID lcipncfbfemopganndembnmjjnhbaomk
Officiell webbadress https://chromewebstore.google.com/detail/student-randomizer/lcipncfbfemopganndembnmjjnhbaomk
Beskrivning Randomly Selects Students
Filstorlek 14.25 KB
Antal Installationer 2,391
Aktuell Version 1.6
Senast Uppdaterad 2019-02-07
Publiceringsdatum 2019-02-07
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare SchoolHelper
Betalningssätt free
Tilläggswebbplats https://milandonhowe.github.io/studentSelect/
Hjälpsida URL https://github.com/MilanDonhowe/studentSelect/issues
Stödda Språk 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"
    ]
}