UAntwerpen Login

Make logging in again a lot easier.

什麼是UAntwerpen Login?

UAntwerpen Login是由Arno Deceuninck開發的Chrome擴展程式,該擴展的主要功能是“Make logging in again a lot easier.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載UAntwerpen Login擴展crx文件

下載UAntwerpen Login擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Note: This plugin is not made by the university and the university isn't responsible for this. If there are any problems or questions, please contact me. 

BlackBoard logs you out every once in a while. This extension makes the login process easier by automatically selecting that you want to login using UAntwerpen SSO, automatically selecting the first microsoft account (@ad.ua.ac.be) to login with. You still have to manually enter your password and hit the login button. Once logged in, you'll also get redirected to the BlackBoard page from which you initially came (where you were logged out). 

Version history:
v1.3: Support "Studentenportaal" click on blackboard.uantwerpen.be
v1.2: Also support "Gasten niet toestaan naar deze cursus te gaan" page
v1.1: Also support "Choose your profile to login" page
v1.0: First working version                    

擴展基本資訊

名稱 UAntwerpen Login UAntwerpen Login
ID gcgaojpamgfhhaojdhfbjbagpajeddnd
官方網址 https://chromewebstore.google.com/detail/uantwerpen-login/gcgaojpamgfhhaojdhfbjbagpajeddnd
簡介 Make logging in again a lot easier.
檔案大小 12.7 MB
安裝次數 80
目前版本 1.3
更新時間 2023-01-05
上架時間 2022-06-06
評分 5.00/5 共 1 次評分
開發者 Arno Deceuninck
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/arnodeceuninck/uantwerpen-login-extension
說明頁面URL https://github.com/arnodeceuninck/uantwerpen-login-extension
支援的語言 nl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UAntwerpen Login",
    "description": "Make logging in again a lot easier.",
    "version": "1.3",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/blackboard.uantwerpen.be\/*"
            ],
            "js": [
                "blackboard-studentenportaal.js"
            ]
        },
        {
            "matches": [
                "https:\/\/blackboard.uantwerpen.be\/webapps\/blackboard\/*"
            ],
            "js": [
                "c1-relogin-bb.js"
            ]
        },
        {
            "matches": [
                "https:\/\/blackboard.uantwerpen.be\/webapps\/login\/?action=relogin"
            ],
            "js": [
                "c2-select-sso.js"
            ]
        },
        {
            "matches": [
                "https:\/\/blackboard.uantwerpen.be\/webapps\/portal\/execute\/tabs\/tabAction?tab_tab_group_id=_178_1"
            ],
            "js": [
                "c2-choose-sso.js"
            ]
        },
        {
            "matches": [
                "https:\/\/login.microsoftonline.com\/*"
            ],
            "js": [
                "c3-microsoft-pick-account.js"
            ]
        },
        {
            "matches": [
                "https:\/\/idpx.uantwerpen.be\/idp\/profile\/SAML2\/Redirect\/SSO*"
            ],
            "js": [
                "c4-uantwerp.js"
            ]
        },
        {
            "matches": [
                "https:\/\/blackboard.uantwerpen.be\/webapps\/portal\/execute\/tabs\/tabAction*"
            ],
            "js": [
                "c5-frontpage.js"
            ]
        }
    ]
}