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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
** 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 |
| 공식 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
} | |