NTHU OAuth Decaptcha
Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form.
什麼是NTHU OAuth Decaptcha?
NTHU OAuth Decaptcha是由justin0u0開發的Chrome擴展程式,該擴展的主要功能是“Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form.”。
擴展截圖
下載NTHU OAuth Decaptcha擴展crx文件
下載NTHU OAuth Decaptcha擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
NTHU OAuth Decaptcha 該插件可以自動填入清大 OAuth 系統驗證碼。 專案網址:https://github.com/justin0u0/NTHU-OAuth-Decaptcha 如果你喜歡這個插件,可以幫我們的 Github Repo 點個星星 ⭐️
擴展基本資訊
名稱 | NTHU OAuth Decaptcha |
ID | mflpajkffpiibelpmffonolenndbgogp |
官方網址 | https://chromewebstore.google.com/detail/nthu-oauth-decaptcha/mflpajkffpiibelpmffonolenndbgogp |
簡介 | Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form. |
檔案大小 | 3.11 MB |
安裝次數 | 401 |
目前版本 | 1.4 |
更新時間 | 2023-08-25 |
上架時間 | 2022-02-14 |
評分 | 5.00/5 共 4 次評分 |
開發者 | justin0u0 |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/justin0u0/NTHU-OAuth-Decaptcha |
說明頁面URL | https://github.com/justin0u0/NTHU-OAuth-Decaptcha |
支援的語言 | zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "NTHU OAuth Decaptcha", "description": "Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form.", "version": "1.4", "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "background": { "service_worker": "background.js" }, "permissions": [ "webRequest", "scripting" ], "host_permissions": [ "https:\/\/oauth.ccxp.nthu.edu.tw\/v1.1\/authorize.php" ], "content_scripts": [ { "matches": [ "https:\/\/oauth.ccxp.nthu.edu.tw\/v1.1\/authorize.php*" ], "js": [ "js\/tfjs-core.min.js", "js\/tfjs-backend-webgl.min.js", "js\/tfjs-layers.min.js" ] } ], "web_accessible_resources": [ { "resources": [ "\/model\/*" ], "matches": [ "https:\/\/oauth.ccxp.nthu.edu.tw\/*" ] } ] } |