Kerberos AutoLogin

Automatically logs you into BU Kerberos.

Was ist Kerberos AutoLogin?

Kerberos AutoLogin ist eine Chrome-Erweiterung, die von https://seanssmith.com entwickelt wurde, und ihr Hauptmerkmal ist "Automatically logs you into BU Kerberos.".

Erweiterungsscreenshots

screenshot

Kerberos AutoLogin-Erweiterungs-CRX-Datei herunterladen

Laden Sie Kerberos AutoLogin-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

                        ** 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                    

Grundlegende Informationen zur Erweiterung

Name Kerberos AutoLogin Kerberos AutoLogin
ID kjdgeffifmjfndeiiphckfhenaoinfah
Offizielle URL https://chromewebstore.google.com/detail/kerberos-autologin/kjdgeffifmjfndeiiphckfhenaoinfah
Beschreibung Automatically logs you into BU Kerberos.
Dateigröße 39.28 KB
Installationsanzahl 122
Aktuelle Version 3.0
Letztes Update 2017-04-20
Veröffentlichungsdatum 2017-04-19
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler https://seanssmith.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/sean-smith/autologin
Hilfeseite URL https://github.com/sean-smith/autologin/issues
URL der Datenschutzrichtlinien-Seite https://seanssmith.net/copyright.html
Unterstützte Sprachen 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
}