UOA SSO Superhero

UOA SSO Superhero

Automatically fixes the Auckland SSO error page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "UOA SSO Superhero",
  "version": "1.1",
  "description": "Automatically fixes the Auckland SSO error page.",
  "icons": {
    "128": "logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.student.auckland.ac.nz/*",
        "https://www.student.auckland.ac.nz/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}