BoilerKey Helper
An extension that alleviates Purdue's BoilerKey two-factor authentication.
什麼是BoilerKey Helper?
BoilerKey Helper是由boilerkey-helper-publishers開發的Chrome擴展程式,該擴展的主要功能是“An extension that alleviates Purdue's BoilerKey two-factor authentication.”。
擴展截圖
下載BoilerKey Helper擴展crx文件
下載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 |
官方網址 | 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\/" ] } |