Kerberos AutoLogin

Automatically logs you into BU Kerberos.

Cos'è Kerberos AutoLogin?

Kerberos AutoLogin è un'estensione di Chrome sviluppata da https://seanssmith.com, e la sua funzione principale è "Automatically logs you into BU Kerberos.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Kerberos AutoLogin

Scarica i file di estensione Kerberos AutoLogin in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        ** Stores Passwords in Plaintext in Local storage, this means that someone with access to your computer can recover your password.**

Tired of entering your password to get into the student link?

This script automatically logs you into BU Kerberos protected pages.

Save your password once and you're all set.

To add features, simply submit a pull request here: https://github.com/sean-smith/autologin                    

Informazioni di Base sull'Estensione

Nome Kerberos AutoLogin Kerberos AutoLogin
ID kjdgeffifmjfndeiiphckfhenaoinfah
URL Ufficiale https://chromewebstore.google.com/detail/kerberos-autologin/kjdgeffifmjfndeiiphckfhenaoinfah
Descrizione Automatically logs you into BU Kerberos.
Dimensione del File 39.28 KB
Conteggio Installazioni 122
Versione Corrente 3.0
Ultimo Aggiornamento 2017-04-20
Data di Pubblicazione 2017-04-19
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore https://seanssmith.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/sean-smith/autologin
URL della Pagina di Aiuto https://github.com/sean-smith/autologin/issues
URL della Pagina della Politica sulla Privacy https://seanssmith.net/copyright.html
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kerberos AutoLogin",
    "short_name": "AutoLogin",
    "description": "Automatically logs you into BU Kerberos.",
    "version": "3.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/weblogin.bu.edu\/*",
                "https:\/\/shib.bu.edu\/*",
                "https:\/\/shib2.bu.edu\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/login.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/block.js"
        ]
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "https:\/\/weblogin.bu.edu\/lib\/scripts\/BUweblogin.js",
        "storage"
    ],
    "web_accessible_resources": [
        "img\/loading.svg"
    ],
    "browser_action": {
        "default_title": "BU Kerberos AutoLogin",
        "default_icon": "img\/lock_16x16.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/lock_16x16.png",
        "48": "img\/lock_48x48.png",
        "128": "img\/lock_128x128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "manifest_version": 2
}