NTHU OAuth Decaptcha
Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form.
¿Qué es NTHU OAuth Decaptcha?
NTHU OAuth Decaptcha es una extensión de Chrome desarrollada por justin0u0, y su función principal es "Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión NTHU OAuth Decaptcha
Descarga archivos de extensión NTHU OAuth Decaptcha en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
NTHU OAuth Decaptcha 該插件可以自動填入清大 OAuth 系統驗證碼。 專案網址:https://github.com/justin0u0/NTHU-OAuth-Decaptcha 如果你喜歡這個插件,可以幫我們的 Github Repo 點個星星 ⭐️
Información Básica de la Extensión
Nombre | NTHU OAuth Decaptcha |
ID | mflpajkffpiibelpmffonolenndbgogp |
URL Oficial | https://chromewebstore.google.com/detail/nthu-oauth-decaptcha/mflpajkffpiibelpmffonolenndbgogp |
Descripción | Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form. |
Tamaño del Archivo | 3.11 MB |
Cantidad de Instalaciones | 401 |
Versión Actual | 1.4 |
Última Actualización | 2023-08-25 |
Fecha de Publicación | 2022-02-14 |
Calificación | 5.00/5 Total de 4 Calificaciones |
Desarrollador | justin0u0 |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/justin0u0/NTHU-OAuth-Decaptcha |
URL de la Página de Ayuda | https://github.com/justin0u0/NTHU-OAuth-Decaptcha |
Idiomas Soportados | 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\/*" ] } ] } |