NTHU OAuth Decaptcha
Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form.
NTHU OAuth Decaptchaคืออะไร?
NTHU OAuth Decaptcha เป็นส่วนขยายของ Chrome ที่พัฒนาโดย justin0u0 และคุณลักษณะหลักของมันคือ "Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NTHU OAuth Decaptcha
ดาวน์โหลดไฟล์ส่วนขยาย NTHU OAuth Decaptcha ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
NTHU OAuth Decaptcha 該插件可以自動填入清大 OAuth 系統驗證碼。 專案網址:https://github.com/justin0u0/NTHU-OAuth-Decaptcha 如果你喜歡這個插件,可以幫我們的 Github Repo 點個星星 ⭐️
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | NTHU OAuth Decaptcha |
ID | mflpajkffpiibelpmffonolenndbgogp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/nthu-oauth-decaptcha/mflpajkffpiibelpmffonolenndbgogp |
คำอธิบาย | Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form. |
ขนาดไฟล์ | 3.11 MB |
จำนวนการติดตั้ง | 401 |
เวอร์ชันปัจจุบัน | 1.4 |
อัปเดตครั้งล่าสุด | 2023-08-25 |
วันที่เผยแพร่ | 2022-02-14 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | justin0u0 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/justin0u0/NTHU-OAuth-Decaptcha |
URL หน้าช่วยเหลือ | https://github.com/justin0u0/NTHU-OAuth-Decaptcha |
ภาษาที่รองรับ | 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\/*" ] } ] } |