Charles Darwin University Netauth Assistant
Maintain access to the Internet for unmanaged devices on campus. Automatically authenticate and keep session active.
Was ist Charles Darwin University Netauth Assistant?
Charles Darwin University Netauth Assistant ist eine Chrome-Erweiterung, die von cdu.cloud.services entwickelt wurde, und ihr Hauptmerkmal ist "Maintain access to the Internet for unmanaged devices on campus. Automatically authenticate and keep session active.".
Erweiterungsscreenshots
Charles Darwin University Netauth Assistant-Erweiterungs-CRX-Datei herunterladen
Laden Sie Charles Darwin University Netauth Assistant-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
For use with non-domain joined PCs on campus.
Grundlegende Informationen zur Erweiterung
Name | Charles Darwin University Netauth Assistant |
ID | hapnnafikgnadbifnbocngochhnkpcea |
Offizielle URL | https://chromewebstore.google.com/detail/charles-darwin-university/hapnnafikgnadbifnbocngochhnkpcea |
Beschreibung | Maintain access to the Internet for unmanaged devices on campus. Automatically authenticate and keep session active. |
Dateigröße | 35.22 KB |
Installationsanzahl | 31 |
Aktuelle Version | 0.1.1 |
Letztes Update | 2020-10-17 |
Veröffentlichungsdatum | 2020-10-17 |
Entwickler | cdu.cloud.services |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://auth.cdu.edu.au/ |
Hilfeseite URL | https://logit.cdu.edu.au/ |
URL der Datenschutzrichtlinien-Seite | https://www.cdu.edu.au/governance/doclibrary/pol-032.pdf |
Unterstützte Sprachen | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Charles Darwin University Netauth Assistant", "short_name": "CDU Netauth Assistant", "description": "Maintain access to the Internet for unmanaged devices on campus. Automatically authenticate and keep session active.", "version": "0.1.1", "icons": { "16": "static\/logo16.png", "48": "static\/logo48.png", "128": "static\/logo.png" }, "browser_action": { "default_icon": "static\/logo.png", "default_popup": "mini-popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/auth.cdu.edu.au\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "background", "alarms", "*:\/\/auth.cdu.edu.au\/*" ] } |