Schoology Grade Displayer

Schoology Grade Displayer

This extension works as an addition to Schoology's grade report page by calculating your grades for each course using the page's…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Schoology Grade Displayer",
  "description": " ",
  "version": "0.1.3",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "css": [
        "main.css"
      ],
      "matches": [
        "https://schoology.harker.org/grades/grades",
        "https://app.schoology.com/grades/grades",
        "https://athena.harker.org/grades/grades",
        "https://schoology.harker.org/grades/grades/",
        "https://athena.harker.org/grades/grades/",
        "https://app.schoology.com/grades/grades/",
        "https://schoology.harker.org/grades/grades?past=1",
        "https://app.schoology.com/grades/grades?past=1",
        "https://athena.harker.org/grades/grades?past=1"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [],
  "converted_from_user_script": true
}