Genesis: Seating Chart Tools

Genesis: Seating Chart Tools

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

Merlin
Additional files are visible only to premium users

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