Genesis: Big Portraits

Genesis: Big Portraits

Adds a big portrait viewer to your gradebook screen (to help you memorize who is who). For the Bernards Township district.

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: Big Portraits",
  "version": "1.08",
  "version_name": "1.08",
  "description": "Adds a big portrait viewer to your gradebook screen (to help you memorize who is who). For the Bernards Township district.",
  "content_scripts": [
    {
      "matches": [
        "*://genesis.genesisedu.com/bernardsboe/sis/view?module=gradebook&category=gradebook&tab1=assignments*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "portraits.js"
      ]
    },
    {
      "matches": [
        "*://genesis.genesisedu.com/bernardsboe/sis/view?module=studentdata&category=studentlist&tab1=studentSearch&action=form*",
        "*://genesis.genesisedu.com/bernardsboe/sis/view?module=studentdata&category=studentlist&tab1=studentSearch&action=form&listDefaultSearchView=",
        "file:///home/andrew/Downloads/Student%20Data.Student%20List-tohogan.html"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "student_search.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "48": "icons/icon48x48.png",
    "96": "icons/icon96x96.png",
    "128": "icons/icon128x128.png"
  },
  "web_accessible_resources": [
    "/index.html",
    "/head.html",
    "/icons/icon16x16.png"
  ]
}