Canvas Easy Grader

Canvas Easy Grader

This extension will increase the number of features in calculating grades on the Canvas Interface

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Canvas Easy Grader",
  "description": "This extension will increase the number of features in calculating grades on the Canvas Interface",
  "version": "4.0",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "static/js/jquery-3.5.1.js",
        "static/js/content.js"
      ]
    }
  ],
  "action": {
    "default_icon": "static/images/icon.png",
    "default_popup": "templates/popup.html"
  },
  "background": {
    "service_worker": "static/js/background.js",
    "type": "module"
  },
  "options_page": "templates/options.html",
  "permissions": [
    "declarativeContent",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "templates/table.html",
        "templates/finalGradeCalc.html",
        "templates/assignment.html",
        "static/js/injectScript.js",
        "static/js/table.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}