STADS (KU) - Compute average

STADS (KU) - Compute average

Computes your (weighted) average based on grades from STADS

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_title__",
  "description": "__MSG_description__",
  "version": "1.0",
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "https://sb.stads.ku.dk/*"
      ],
      "js": [
        "getavg.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "activeTab",
    "contextMenus",
    "https://sb.stads.ku.dk/*"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}