NTHU OAuth Decaptcha
Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form.
Was ist NTHU OAuth Decaptcha?
NTHU OAuth Decaptcha ist eine Chrome-Erweiterung, die von justin0u0 entwickelt wurde, und ihr Hauptmerkmal ist "Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form.".
Erweiterungsscreenshots
NTHU OAuth Decaptcha-Erweiterungs-CRX-Datei herunterladen
Laden Sie NTHU OAuth Decaptcha-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
NTHU OAuth Decaptcha 該插件可以自動填入清大 OAuth 系統驗證碼。 專案網址:https://github.com/justin0u0/NTHU-OAuth-Decaptcha 如果你喜歡這個插件,可以幫我們的 Github Repo 點個星星 ⭐️
Grundlegende Informationen zur Erweiterung
Name | NTHU OAuth Decaptcha |
ID | mflpajkffpiibelpmffonolenndbgogp |
Offizielle URL | https://chromewebstore.google.com/detail/nthu-oauth-decaptcha/mflpajkffpiibelpmffonolenndbgogp |
Beschreibung | Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form. |
Dateigröße | 3.11 MB |
Installationsanzahl | 401 |
Aktuelle Version | 1.4 |
Letztes Update | 2023-08-25 |
Veröffentlichungsdatum | 2022-02-14 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | justin0u0 |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/justin0u0/NTHU-OAuth-Decaptcha |
Hilfeseite URL | https://github.com/justin0u0/NTHU-OAuth-Decaptcha |
Unterstützte Sprachen | 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\/*" ] } ] } |