Kerberos AutoLogin
Automatically logs you into BU Kerberos.
Vad är Kerberos AutoLogin?
Kerberos AutoLogin är en Chrome-tillägg utvecklad av https://seanssmith.com, och dess huvudfunktion är "Automatically logs you into BU Kerberos.".
Tilläggsskärmbilder
Ladda ner Kerberos AutoLogin-förlängningens CRX-fil
Ladda ner Kerberos AutoLogin-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
** 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 Grundläggande Information om Tillägg
| Namn | |
| ID | kjdgeffifmjfndeiiphckfhenaoinfah |
| Officiell webbadress | https://chromewebstore.google.com/detail/kerberos-autologin/kjdgeffifmjfndeiiphckfhenaoinfah |
| Beskrivning | Automatically logs you into BU Kerberos. |
| Filstorlek | 39.28 KB |
| Antal Installationer | 122 |
| Aktuell Version | 3.0 |
| Senast Uppdaterad | 2017-04-20 |
| Publiceringsdatum | 2017-04-19 |
| Betyg | 5.00/5 Totalt 3 Betyg |
| Utvecklare | https://seanssmith.com |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/sean-smith/autologin |
| Hjälpsida URL | https://github.com/sean-smith/autologin/issues |
| URL till Sekretesspolicy Sidan | https://seanssmith.net/copyright.html |
| Stödda Språk | 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
} | |