Kerberos AutoLogin

Automatically logs you into BU Kerberos.

O que é Kerberos AutoLogin?

Kerberos AutoLogin é uma extensão do Chrome desenvolvida por https://seanssmith.com, e sua principal característica é "Automatically logs you into BU Kerberos.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Kerberos AutoLogin

Baixe arquivos de extensão Kerberos AutoLogin no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Kerberos AutoLogin Kerberos AutoLogin
ID kjdgeffifmjfndeiiphckfhenaoinfah
URL Oficial https://chromewebstore.google.com/detail/kerberos-autologin/kjdgeffifmjfndeiiphckfhenaoinfah
Descrição Automatically logs you into BU Kerberos.
Tamanho do Arquivo 39.28 KB
Contagem de Instalações 122
Versão Atual 3.0
Última Atualização 2017-04-20
Data de Publicação 2017-04-19
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor https://seanssmith.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/sean-smith/autologin
URL da Página de Ajuda https://github.com/sean-smith/autologin/issues
URL da Página de Política de Privacidade https://seanssmith.net/copyright.html
Idiomas Suportados 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
}