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 |
官方URL | 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\/*" ] } ] } |