Charles Darwin University Netauth Assistant
Maintain access to the Internet for unmanaged devices on campus. Automatically authenticate and keep session active.
什么是Charles Darwin University Netauth Assistant?
Charles Darwin University Netauth Assistant是由cdu.cloud.services开发的Chrome扩展程序,该扩展的主要功能是“Maintain access to the Internet for unmanaged devices on campus. Automatically authenticate and keep session active.”。
扩展截图
下载Charles Darwin University Netauth Assistant扩展crx文件
下载Charles Darwin University Netauth Assistant扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
For use with non-domain joined PCs on campus.
扩展基本信息
名称 | Charles Darwin University Netauth Assistant |
ID | hapnnafikgnadbifnbocngochhnkpcea |
官方URL | https://chromewebstore.google.com/detail/charles-darwin-university/hapnnafikgnadbifnbocngochhnkpcea |
简介 | Maintain access to the Internet for unmanaged devices on campus. Automatically authenticate and keep session active. |
文件大小 | 35.22 KB |
安装次数 | 31 |
当前版本 | 0.1.1 |
更新时间 | 2020-10-17 |
上架时间 | 2020-10-17 |
开发者 | cdu.cloud.services |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://auth.cdu.edu.au/ |
帮助页面URL | https://logit.cdu.edu.au/ |
隐私政策页面URL | https://www.cdu.edu.au/governance/doclibrary/pol-032.pdf |
支持的语言 | 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\/*" ] } |