NTHU OAuth Decaptcha
Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form.
What is NTHU OAuth Decaptcha?
NTHU OAuth Decaptcha is a Chrome extension developed by justin0u0, and its main feature is "Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form.".
Extension Screenshots
Download NTHU OAuth Decaptcha Extension CRX File
Download NTHU OAuth Decaptcha extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
NTHU OAuth Decaptcha 該插件可以自動填入清大 OAuth 系統驗證碼。 專案網址:https://github.com/justin0u0/NTHU-OAuth-Decaptcha 如果你喜歡這個插件,可以幫我們的 Github Repo 點個星星 ⭐️
Extension Basic Information
Name | NTHU OAuth Decaptcha |
ID | mflpajkffpiibelpmffonolenndbgogp |
Official URL | https://chromewebstore.google.com/detail/nthu-oauth-decaptcha/mflpajkffpiibelpmffonolenndbgogp |
Description | Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form. |
File Size | 3.11 MB |
Installation Count | 401 |
Current Version | 1.4 |
Last Updated | 2023-08-25 |
Publish Date | 2022-02-14 |
Rating | 5.00/5 Total 4 Ratings |
Developer | justin0u0 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/justin0u0/NTHU-OAuth-Decaptcha |
Help Page URL | https://github.com/justin0u0/NTHU-OAuth-Decaptcha |
Supported Languages | 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\/*" ] } ] } |