Genesis: Seating Chart Tools

Adds helpful tools to the 'Seating Chart' screen in Genesis. Written by Andrew Hogan Aug 29, 2018.

Genesis: Seating Chart Toolsคืออะไร?

Genesis: Seating Chart Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Andrew Hogan และคุณลักษณะหลักของมันคือ "Adds helpful tools to the 'Seating Chart' screen in Genesis. Written by Andrew Hogan Aug 29, 2018."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Genesis: Seating Chart Tools

ดาวน์โหลดไฟล์ส่วนขยาย Genesis: Seating Chart Tools ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        ----- Info -----

For use in RIH district ONLY!

If you are a district Tech Director/Coordinator and you are interested in this extension, or products like these, please contact me directly at [email protected]

----- What do I do? -----
In Genesis, go to the seating chart screen in any class. There is a new button up top that says "Seating Chart Solver"
Click it to open up the solver.
To see what it does, click "Solve" and watch it try to solve for a seating chart solution.
Next, configure student options to get the seating chart you really desire.
Click "Use fittest" to implement the solution onto your seating chart
Click "Close" to close the screen and ignore any changes.


----- Will it mess up my Genesis settings? -----
No - you don't have to save any changes this extension makes to your seating chart.
I encourage you to experiment with it to see if you can get it to work for you.
It's possible that it won't fit your needs, especially if your room layout isn't like any of the options!

----- How does it work? -----
This extension implements a Genetic Algorithm for solving the most "optimal" seating chart for your students.
It's NOT plug-and-play!
To get it to work well, you should spend some time configuring options and experimenting with it to get it to do what you really want.
Genetic Algorithms generate "random" solutions and allow them to "compete" against each other, mimicking an evolutionary process. Each generation is evaluated for the individual with the greatest "Fitness" score. The fittest "survives" and that is your chosen solution.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Genesis: Seating Chart Tools Genesis: Seating Chart Tools
ID pjdjebpobjmamgmleeiibhhbkkhanikc
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/genesis-seating-chart-too/pjdjebpobjmamgmleeiibhhbkkhanikc
คำอธิบาย Adds helpful tools to the 'Seating Chart' screen in Genesis. Written by Andrew Hogan Aug 29, 2018.
ขนาดไฟล์ 95.57 KB
จำนวนการติดตั้ง 78
เวอร์ชันปัจจุบัน 1.02 alpha
อัปเดตครั้งล่าสุด 2019-03-03
วันที่เผยแพร่ 2019-03-03
ผู้พัฒนา Andrew Hogan
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Genesis: Seating Chart Tools",
    "version": "1.02",
    "version_name": "1.02 alpha",
    "description": "Adds helpful tools to the 'Seating Chart' screen in Genesis. Written by Andrew Hogan Aug 29, 2018.",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/genesis.rih.org\/genesis\/sis\/view?*tab1=seatingchart*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "jquery-simulate-drag.js",
                "seatingchart.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "*:\/\/rih.schoology.com\/*",
        "*:\/\/schoology.rih.org\/*",
        "*:\/\/genesis.rih.org\/*"
    ],
    "icons": {
        "48": "icons\/SCT48X48.png",
        "96": "icons\/SCT96X96.png"
    },
    "web_accessible_resources": [
        "\/index.html",
        "\/lib\/genetic.js",
        "\/genetic_seatingchart.js"
    ]
}