BoilerKey Helper
An extension that alleviates Purdue's BoilerKey two-factor authentication.
BoilerKey Helperคืออะไร?
BoilerKey Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย boilerkey-helper-publishers และคุณลักษณะหลักของมันคือ "An extension that alleviates Purdue's BoilerKey two-factor authentication."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BoilerKey Helper
ดาวน์โหลดไฟล์ส่วนขยาย BoilerKey Helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The BoilerKey Helper extension is a simple way to bypass BoilerKey on your personal computer. After setting it up, it will automatically log you into Purdue's CAS. This project is open source! Contribute by forking on GitHub! https://github.com/zyonse/BoilerKeyExtension
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | BoilerKey Helper |
ID | infadhgmajhpaoejgbennpkjnobdbkij |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/boilerkey-helper/infadhgmajhpaoejgbennpkjnobdbkij |
คำอธิบาย | An extension that alleviates Purdue's BoilerKey two-factor authentication. |
ขนาดไฟล์ | 83 KB |
จำนวนการติดตั้ง | 387 |
เวอร์ชันปัจจุบัน | 1.11 |
อัปเดตครั้งล่าสุด | 2023-03-02 |
วันที่เผยแพร่ | 2019-04-02 |
คะแนน | 5.00/5 รวมทั้งหมด 11 คะแนน |
ผู้พัฒนา | boilerkey-helper-publishers |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/zyonse/BoilerKeyExtension |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "BoilerKey Helper", "description": "An extension that alleviates Purdue's BoilerKey two-factor authentication.", "author": "The Purdue Community", "version": "1.11", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/purdue.brightspace.com\/*", "https:\/\/www.purdue.edu\/apps\/account\/cas\/*" ], "js": [ "jsOTP.js", "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icons\/icon128.png", "default_title": "BoilerKey Helper", "default_popup": "popup.html" }, "permissions": [ "https:\/\/api-1b9bef70.duosecurity.com\/" ] } |