Kerberos AutoLogin
Automatically logs you into BU Kerberos.
什麼是Kerberos AutoLogin?
Kerberos AutoLogin是由https://seanssmith.com開發的Chrome擴展程式,該擴展的主要功能是“Automatically logs you into BU Kerberos.”。
擴展截圖
下載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 擴展基本資訊
| 名稱 | |
| ID | kjdgeffifmjfndeiiphckfhenaoinfah |
| 官方網址 | 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
} | |