SJTU jAccount Login Helper
This extension helps you log in with your jAccount, since its validate code is hard to identify.
SJTU jAccount Login Helper란 무엇입니까?
SJTU jAccount Login Helper은(는) stooloveu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension helps you log in with your jAccount, since its validate code is hard to identify."입니다.
확장 프로그램 스크린샷
SJTU jAccount Login Helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension helps you log in with your jAccount, since its visual verify code is hard to identify.
Special thanks to:
jason.nkg 95veronica.li frankeepcalm 浅草
-0.3.0
Date: 2016-7-25
Detail:
* Adjusted to the new version of jAccount SSO
* Several bugs fixed
* Loading speed improved
-0.2.4
Date: 2015-11-29
Detail:
* UI improved
-0.2.3
Date: 2015-2-27
Detail:
* fix - repeated login attempts when the provided user name and/or password is in error
* reduced captcha request count 확장 프로그램 기본 정보
| 이름 | |
| ID | ihchdleonhejkpdkmahiejaabcpkkicj |
| 공식 URL | https://chrome.google.com/webstore/detail/ihchdleonhejkpdkmahiejaabcpkkicj |
| 설명 | This extension helps you log in with your jAccount, since its validate code is hard to identify. |
| 파일 크기 | 615 KB |
| 설치 횟수 | 100 |
| 현재 버전 | 0.3.1 |
| 최근 업데이트 | 2016-10-24 |
| 출시 날짜 | 2016-10-24 |
| 평점 | 5.00/5 총 12 개의 평점 |
| 개발자 | stooloveu |
| 이메일 | [email protected] |
| 결제 유형 | free |
| 지원되는 언어 | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"background": {
"scripts": [
"background.js"
]
},
"name": "SJTU jAccount Login Helper",
"description": "This extension helps you log in with your jAccount, since its validate code is hard to identify.",
"version": "0.3.1",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"32": "icons\/icon32.png",
"128": "icons\/icon128.png"
},
"browser_action": {
"default_icon": "popup\/icon-b.png",
"default_popup": "popup\/popup.html",
"default_title": "jHelper"
},
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/jaccount.sjtu.edu.cn\/jaccount\/jalogin*",
"http:\/\/jaccount.sjtu.edu.cn\/jaccount\/jalogin*"
],
"run_at": "document_end",
"js": [
"jquery-3.1.0.min.js",
"cracker.js"
]
}
],
"author": "Stool",
"short_name": "jHelper"
} | |