Genesis: Cohort Finder

Genesis: Cohort Finder

Adds the Cohort Finder to Genesis. Written by Andrew Hogan Nov 15, 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: Cohort Finder",
  "version": "1.2",
  "version_name": "1.2 alpha",
  "description": "Adds the Cohort Finder to Genesis. Written by Andrew Hogan Nov 15, 2018.",
  "content_scripts": [
    {
      "matches": [
        "*://genesis.rih.org/genesis/sis/view?module=gradebook&category=gradebook&tab1=assignments*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "cohortfinder.js"
      ]
    },
    {
      "matches": [
        "*://genesis.rih.org/genesis/sis/view?module=gradebook&category=home&tab1=summary*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "bigcohortfinder.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "*://genesis.rih.org/*"
  ],
  "icons": {
    "48": "icons/cencus48X48.png",
    "96": "icons/cencus96X96.png"
  },
  "web_accessible_resources": [
    "/index.html",
    "/index_BCF.html"
  ]
}