Automatically fixes the Auckland SSO error page.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
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"
}
}