Kerberos AutoLogin
Automatically logs you into BU Kerberos.
Qu'est-ce que Kerberos AutoLogin ?
Kerberos AutoLogin est une extension Chrome développée par https://seanssmith.com, et sa fonction principale est "Automatically logs you into BU Kerberos.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Kerberos AutoLogin
Téléchargez les fichiers d'extension Kerberos AutoLogin au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
** 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 Informations de Base sur l'Extension
| Nom | |
| ID | kjdgeffifmjfndeiiphckfhenaoinfah |
| URL Officiel | https://chromewebstore.google.com/detail/kerberos-autologin/kjdgeffifmjfndeiiphckfhenaoinfah |
| Description | Automatically logs you into BU Kerberos. |
| Taille du Fichier | 39.28 KB |
| Nombre d'Installations | 122 |
| Version Actuelle | 3.0 |
| Dernière Mise à Jour | 2017-04-20 |
| Date de Publication | 2017-04-19 |
| Évaluation | 5.00/5 Total 3 Évaluations |
| Développeur | https://seanssmith.com |
| [email protected] | |
| Type de Paiement | free |
| Site Web de l'Extension | https://github.com/sean-smith/autologin |
| URL de la Page d'Aide | https://github.com/sean-smith/autologin/issues |
| URL de la Page de Politique de Confidentialité | https://seanssmith.net/copyright.html |
| Langues Prises en Charge | 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
} | |