NTHU OAuth Decaptcha
Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form.
NTHU OAuth Decaptcha là gì?
NTHU OAuth Decaptcha là một tiện ích mở rộng Chrome được phát triển bởi justin0u0, và tính năng chính của nó là "Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng NTHU OAuth Decaptcha
Tải xuống các tệp mở rộng NTHU OAuth Decaptcha dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
NTHU OAuth Decaptcha 該插件可以自動填入清大 OAuth 系統驗證碼。 專案網址:https://github.com/justin0u0/NTHU-OAuth-Decaptcha 如果你喜歡這個插件,可以幫我們的 Github Repo 點個星星 ⭐️
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | NTHU OAuth Decaptcha |
ID | mflpajkffpiibelpmffonolenndbgogp |
URL Chính Thức | https://chromewebstore.google.com/detail/nthu-oauth-decaptcha/mflpajkffpiibelpmffonolenndbgogp |
Mô tả | Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form. |
Kích Thước Tệp | 3.11 MB |
Số Lần Cài Đặt | 401 |
Phiên Bản Hiện Tại | 1.4 |
Cập Nhật Lần Cuối | 2023-08-25 |
Ngày Phát Hành | 2022-02-14 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | justin0u0 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/justin0u0/NTHU-OAuth-Decaptcha |
URL Trang Trợ Giúp | https://github.com/justin0u0/NTHU-OAuth-Decaptcha |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |