BoilerKey Auto Login

Extension to automatically log in to your Purdue Account

BoilerKey Auto Loginคืออะไร?

BoilerKey Auto Login เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jeremywgleeson และคุณลักษณะหลักของมันคือ "Extension to automatically log in to your Purdue Account"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BoilerKey Auto Login

ดาวน์โหลดไฟล์ส่วนขยาย BoilerKey Auto Login ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Forget about grabbing your phone and clicking confirm on DuoMobile! This extension adds a new 'Auto Login' button to the Purdue login page which will bypass DuoMobile.

Setup is easy, simply log in to your Purdue account once through the extension, and it will automatically set everything up!

There is also an option for 'Auto Login' in the settings which will perform this action automatically whenever the Purdue login screen presented.

This extension will register a new BoilerKey device during setup for Chrome to use. You will receive an email notifying you that this device has been added. You may revoke access at any time by clearing data and/or removing the device on Purdue's BoilerKey management page.

FAQ:
Q: Are there any security concerns?
A: This extension essentially lets you add Chrome as a Boiler Key device in addition to your phone. This means that anyone who has access to your computer has access to your Purdue account, and does not need your phone to authenticate it.

Q: Does this mean I never have to use DuoMobile again?
A: No, the extension only bypasses the DuoMobile 2fa step on devices it is installed and set up on. That means any login attempts from your phone, public computers, and nefarious hackers will still require you to confirm on your DuoMobile app.

Source:
https://github.com/jeremywgleeson/BoilerKey-Chrome
Note that this extension is a fork, so assets and code have been used from Anuraag's extension:
https://github.com/anuraagy/BoilerKey-Chrome

Disclaimer: This extension is in no way affiliated with Purdue University or Duo Security                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ BoilerKey Auto Login BoilerKey Auto Login
ID bjnbjiibppganlfgnngnofmaihokggem
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/boilerkey-auto-login/bjnbjiibppganlfgnngnofmaihokggem
คำอธิบาย Extension to automatically log in to your Purdue Account
ขนาดไฟล์ 130 KB
จำนวนการติดตั้ง 402
เวอร์ชันปัจจุบัน 0.0.1.2
อัปเดตครั้งล่าสุด 2022-01-13
วันที่เผยแพร่ 2021-03-21
คะแนน 4.50/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา jeremywgleeson
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jeremywgleeson/BoilerKey-Chrome
URL หน้านโยบายความเป็นส่วนตัว https://github.com/jeremywgleeson/BoilerKey-Chrome
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BoilerKey Auto Login",
    "version": "0.0.1.2",
    "permissions": [
        "cookies",
        "storage",
        "https:\/\/api-1b9bef70.duosecurity.com\/*",
        "https:\/\/www.purdue.edu\/apps\/account\/cas\/login"
    ],
    "description": "Extension to automatically log in to your Purdue Account",
    "manifest_version": 2,
    "browser_action": {
        "default_title": "BoilerKey - In Browser",
        "default_popup": "dropdown.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.purdue.edu\/apps\/account\/cas\/login*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "js\/hotp.js",
                "js\/boilerkey.js",
                "js\/content.js"
            ]
        }
    ],
    "icons": {
        "128": "key.png"
    }
}