NTHU OAuth Decaptcha
Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form.
O que é NTHU OAuth Decaptcha?
NTHU OAuth Decaptcha é uma extensão do Chrome desenvolvida por justin0u0, e sua principal característica é "Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão NTHU OAuth Decaptcha
Baixe arquivos de extensão NTHU OAuth Decaptcha no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
NTHU OAuth Decaptcha 該插件可以自動填入清大 OAuth 系統驗證碼。 專案網址:https://github.com/justin0u0/NTHU-OAuth-Decaptcha 如果你喜歡這個插件,可以幫我們的 Github Repo 點個星星 ⭐️
Informações Básicas da Extensão
Nome | NTHU OAuth Decaptcha |
ID | mflpajkffpiibelpmffonolenndbgogp |
URL Oficial | https://chromewebstore.google.com/detail/nthu-oauth-decaptcha/mflpajkffpiibelpmffonolenndbgogp |
Descrição | Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form. |
Tamanho do Arquivo | 3.11 MB |
Contagem de Instalações | 401 |
Versão Atual | 1.4 |
Última Atualização | 2023-08-25 |
Data de Publicação | 2022-02-14 |
Classificação | 5.00/5 Total de 4 Avaliações |
Desenvolvedor | justin0u0 |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/justin0u0/NTHU-OAuth-Decaptcha |
URL da Página de Ajuda | https://github.com/justin0u0/NTHU-OAuth-Decaptcha |
Idiomas Suportados | 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\/*" ] } ] } |