UCR MFA Helper

A chrome extension for auto-filling UCR MFA

UCR MFA Helper क्या है?

UCR MFA Helper mingjun97 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension for auto-filling UCR MFA"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में UCR MFA Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
}