NTHU OAuth Decaptcha
Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form.
Cos'è NTHU OAuth Decaptcha?
NTHU OAuth Decaptcha è un'estensione di Chrome sviluppata da justin0u0, e la sua funzione principale è "Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione NTHU OAuth Decaptcha
Scarica i file di estensione NTHU OAuth Decaptcha in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
NTHU OAuth Decaptcha 該插件可以自動填入清大 OAuth 系統驗證碼。 專案網址:https://github.com/justin0u0/NTHU-OAuth-Decaptcha 如果你喜歡這個插件,可以幫我們的 Github Repo 點個星星 ⭐️
Informazioni di Base sull'Estensione
Nome | NTHU OAuth Decaptcha |
ID | mflpajkffpiibelpmffonolenndbgogp |
URL Ufficiale | https://chromewebstore.google.com/detail/nthu-oauth-decaptcha/mflpajkffpiibelpmffonolenndbgogp |
Descrizione | Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form. |
Dimensione del File | 3.11 MB |
Conteggio Installazioni | 401 |
Versione Corrente | 1.4 |
Ultimo Aggiornamento | 2023-08-25 |
Data di Pubblicazione | 2022-02-14 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | justin0u0 |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/justin0u0/NTHU-OAuth-Decaptcha |
URL della Pagina di Aiuto | https://github.com/justin0u0/NTHU-OAuth-Decaptcha |
Lingue Supportate | 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\/*" ] } ] } |