UAntwerpen Login

Make logging in again a lot easier.

Vad är UAntwerpen Login?

UAntwerpen Login är en Chrome-tillägg utvecklad av Arno Deceuninck, och dess huvudfunktion är "Make logging in again a lot easier.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner UAntwerpen Login-förlängningens CRX-fil

Ladda ner UAntwerpen Login-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn UAntwerpen Login UAntwerpen Login
ID gcgaojpamgfhhaojdhfbjbagpajeddnd
Officiell webbadress https://chromewebstore.google.com/detail/uantwerpen-login/gcgaojpamgfhhaojdhfbjbagpajeddnd
Beskrivning Make logging in again a lot easier.
Filstorlek 12.7 MB
Antal Installationer 80
Aktuell Version 1.3
Senast Uppdaterad 2023-01-05
Publiceringsdatum 2022-06-06
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Arno Deceuninck
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/arnodeceuninck/uantwerpen-login-extension
Hjälpsida URL https://github.com/arnodeceuninck/uantwerpen-login-extension
Stödda Språk 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"
            ]
        }
    ]
}