Genesis: Whole Class Transcript

Genesis: Whole Class Transcript

Adds Transcript and Grades statistics capability to Genesis. Written by Andrew Hogan Aug 30, 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: Whole Class Transcript",
  "version": "1.1",
  "version_name": "1.1 alpha",
  "description": "Adds Transcript and Grades statistics capability to Genesis. Written by Andrew Hogan Aug 30, 2018.",
  "content_scripts": [
    {
      "matches": [
        "*://genesis.rih.org/genesis/sis/view?module=studentdata&category=modifystudent&tab1=demographics*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "xscript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "*://genesis.rih.org/*"
  ],
  "icons": {
    "48": "icons/cencus48X48.png",
    "96": "icons/cencus96X96.png"
  },
  "web_accessible_resources": [
    "/index.html",
    "/lib/genetic.js",
    "/genetic_seatingchart.js"
  ]
}