Kerberos AutoLogin

Automatically logs you into BU Kerberos.

Что такое Kerberos AutoLogin?

Kerberos AutoLogin - это расширение Chrome, разработанное https://seanssmith.com, и его основная функция - "Automatically logs you into BU Kerberos.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Kerberos AutoLogin

Скачайте файлы расширений 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
}