NTHU OAuth Decaptcha
Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form.
Qu'est-ce que NTHU OAuth Decaptcha ?
NTHU OAuth Decaptcha est une extension Chrome développée par justin0u0, et sa fonction principale est "Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension NTHU OAuth Decaptcha
Téléchargez les fichiers d'extension NTHU OAuth Decaptcha au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
NTHU OAuth Decaptcha 該插件可以自動填入清大 OAuth 系統驗證碼。 專案網址:https://github.com/justin0u0/NTHU-OAuth-Decaptcha 如果你喜歡這個插件,可以幫我們的 Github Repo 點個星星 ⭐️
Informations de Base sur l'Extension
Nom | NTHU OAuth Decaptcha |
ID | mflpajkffpiibelpmffonolenndbgogp |
URL Officiel | 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. |
Taille du Fichier | 3.11 MB |
Nombre d'Installations | 401 |
Version Actuelle | 1.4 |
Dernière Mise à Jour | 2023-08-25 |
Date de Publication | 2022-02-14 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | justin0u0 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/justin0u0/NTHU-OAuth-Decaptcha |
URL de la Page d'Aide | https://github.com/justin0u0/NTHU-OAuth-Decaptcha |
Langues Prises en Charge | 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\/*" ] } ] } |