Kerberos AutoLogin
Automatically logs you into BU Kerberos.
Co je Kerberos AutoLogin?
Kerberos AutoLogin je rozšíření Chrome vyvinuté https://seanssmith.com, a jeho hlavní funkcí je „Automatically logs you into BU Kerberos.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Kerberos AutoLogin
Stáhněte si soubory rozšíření Kerberos AutoLogin ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
** 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 Základní Informace o Rozšíření
| Název | |
| ID | kjdgeffifmjfndeiiphckfhenaoinfah |
| Oficiální URL | https://chromewebstore.google.com/detail/kerberos-autologin/kjdgeffifmjfndeiiphckfhenaoinfah |
| Popis | Automatically logs you into BU Kerberos. |
| Velikost souboru | 39.28 KB |
| Počet instalací | 122 |
| Aktuální Verze | 3.0 |
| Poslední Aktualizace | 2017-04-20 |
| Datum Vydání | 2017-04-19 |
| Hodnocení | 5.00/5 Celkem 3 Hodnocení |
| Vývojář | https://seanssmith.com |
| [email protected] | |
| Typ Platby | free |
| Webové stránky Rozšíření | https://github.com/sean-smith/autologin |
| URL Stránky Nápovědy | https://github.com/sean-smith/autologin/issues |
| URL Stránky Zásad Ochrany Soukromí | https://seanssmith.net/copyright.html |
| Podporované Jazyky | 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
} | |