UCR MFA Helper
A chrome extension for auto-filling UCR MFA
UCR MFA Helper란 무엇입니까?
UCR MFA Helper은(는) mingjun97에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension for auto-filling UCR MFA"입니다.
확장 프로그램 스크린샷
UCR MFA Helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
NOTE: THIS EXTENSION IS NOT OFFICIAL PLUGIN, it's a third-party accessibility tool. A chrome extension for auto-filling UCR MFA code to ease your way accessing ucr site on your own computer. This is an open source tweak. https://github.com/mingjun97/ucr_mfa_crx Usage: Click the extension(typically it's on your top-right corner), input your NetID and password. Click enable, wait for a while, finish authentication inside the popuped window. -------------------------Change Log----------------------- v2.1.0 Now work with new CAS system! v2.0.0 Add support for sync via google account v1.0.5 Fix bugs in logout; Revise descriptions; Avoid continuously trying to login v1.0.4 Perform logout after done with getting passcodes to ensure security. v1.0.3 Add autologin feature, enable it to help you click the "Login Now" button to save your effort.
확장 프로그램 기본 정보
이름 | UCR MFA Helper |
ID | oddbinhopeegfapdcgdgpbdcacoekbpa |
공식 URL | https://chromewebstore.google.com/detail/ucr-mfa-helper/oddbinhopeegfapdcgdgpbdcacoekbpa |
설명 | A chrome extension for auto-filling UCR MFA |
파일 크기 | 122 KB |
설치 횟수 | 38 |
현재 버전 | 2.1.0 |
최근 업데이트 | 2020-10-03 |
출시 날짜 | 2020-01-09 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | mingjun97 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/mingjun97/ucr_mfa_crx |
도움말 페이지 URL | https://github.com/mingjun97/ucr_mfa_crx/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "UCR MFA Helper", "version": "2.1.0", "description": "A chrome extension for auto-filling UCR MFA", "icons": { "16": "img\/icon.png", "48": "img\/icon.png", "128": "img\/icon.png" }, "browser_action": { "default_icon": "img\/icon.png", "default_title": "UCR MFA", "default_popup": "popup.html" }, "background": { "scripts": [ "js\/jquery-3.4.1.min.js", "js\/daemon.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/api-24ed243a.duosecurity.com\/frame\/prompt*" ], "js": [ "js\/handler.js" ], "run_at": "document_idle", "all_frames": true }, { "matches": [ "https:\/\/auth.ucr.edu\/cas\/login?service=*" ], "js": [ "js\/login.js" ], "run_at": "document_idle", "all_frames": true }, { "matches": [ "https:\/\/myaccount.ucr.edu\/app*" ], "js": [ "js\/jquery-3.4.1.min.js", "js\/passcode_handler\/getPasscodes.js" ], "run_at": "document_idle", "all_frames": true } ], "permissions": [ "webRequest", "storage", "https:\/\/auth.ucr.edu\/cas\/login?*", "https:\/\/myaccount.ucr.edu\/app*", "https:\/\/api-24ed243a.duosecurity.com\/frame\/web\/v1\/auth?*", "notifications" ], "web_accessible_resources": [ "js\/inject.js", "js\/login_inject.js", "js\/duo_inject.js" ], "homepage_url": "https:\/\/github.com\/mingjun97\/ucr_mfa_crx", "devtools_page": "devtools.html" } |