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
Eメール [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
}