Genesis: Quarterly Grades Copier

Genesis: Quarterly Grades Copier

Adds the QGC to Genesis. Written by Andrew Hogan Jan 23, 2019.

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: Quarterly Grades Copier",
  "version": "1.02",
  "version_name": "1.02 alpha",
  "description": "Adds the QGC to Genesis. Written by Andrew Hogan Jan 23, 2019.",
  "content_scripts": [
    {
      "matches": [
        "*://genesis.rih.org/genesis/sis/view?module=gradebook&category=gradebook&tab1=assignments*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "quarterlycopier.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "*://genesis.rih.org/*"
  ],
  "icons": {
    "48": "icons/cencus48X48.png",
    "96": "icons/cencus96X96.png"
  },
  "web_accessible_resources": [
    "/index.html",
    "/head.html"
  ]
}