Student Randomizer

Randomly Selects Students

Student Randomizer là gì?

Student Randomizer là một tiện ích mở rộng Chrome được phát triển bởi SchoolHelper, và tính năng chính của nó là "Randomly Selects Students".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Student Randomizer

Tải xuống các tệp mở rộng Student Randomizer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Student Randomizer Student Randomizer
ID lcipncfbfemopganndembnmjjnhbaomk
URL Chính Thức https://chromewebstore.google.com/detail/student-randomizer/lcipncfbfemopganndembnmjjnhbaomk
Mô tả Randomly Selects Students
Kích Thước Tệp 14.25 KB
Số Lần Cài Đặt 2,391
Phiên Bản Hiện Tại 1.6
Cập Nhật Lần Cuối 2019-02-07
Ngày Phát Hành 2019-02-07
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển SchoolHelper
Loại Thanh Toán free
Trang Web Mở Rộng https://milandonhowe.github.io/studentSelect/
URL Trang Trợ Giúp https://github.com/MilanDonhowe/studentSelect/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}