Student Randomizer

Randomly Selects Students

Student Randomizer란 무엇입니까?

Student Randomizer은(는) SchoolHelper에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Randomly Selects Students"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Student Randomizer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    ]
}