Kerberos AutoLogin

Automatically logs you into BU Kerberos.

什么是Kerberos AutoLogin?

Kerberos AutoLogin是由https://seanssmith.com开发的Chrome扩展程序,该扩展的主要功能是“Automatically logs you into BU Kerberos.”。

扩展截图

screenshot

下载Kerberos AutoLogin扩展crx文件

下载Kerberos AutoLogin扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Kerberos AutoLogin Kerberos AutoLogin
ID kjdgeffifmjfndeiiphckfhenaoinfah
官方URL https://chromewebstore.google.com/detail/kerberos-autologin/kjdgeffifmjfndeiiphckfhenaoinfah
简介 Automatically logs you into BU Kerberos.
文件大小 39.28 KB
安装次数 122
当前版本 3.0
更新时间 2017-04-20
上架时间 2017-04-19
评分 5.00/5 共3次评分
开发者 https://seanssmith.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/sean-smith/autologin
帮助页面URL https://github.com/sean-smith/autologin/issues
隐私政策页面URL https://seanssmith.net/copyright.html
支持的语言 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
}