NTHU portal captcha solver

Solve captcha in NTHU portal using TensorFlow.js.

什麼是NTHU portal captcha solver?

NTHU portal captcha solver是由Po-Chen Lin開發的Chrome擴展程式,該擴展的主要功能是“Solve captcha in NTHU portal using TensorFlow.js.”。

擴展截圖

screenshot

下載NTHU portal captcha solver擴展crx文件

下載NTHU portal captcha solver擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This chrome extension solves the captcha on https://www.ccxp.nthu.edu.tw/ccxp/INQUIRE/ and auto fills.
Source: https://github.com/danielpclin/nthu-portal-captcha-solver-extension                    

擴展基本資訊

名稱 NTHU portal captcha solver NTHU portal captcha solver
ID ocjlojnojbkmgkamdnhakhkfmfcfcgcl
官方網址 https://chromewebstore.google.com/detail/nthu-portal-captcha-solve/ocjlojnojbkmgkamdnhakhkfmfcfcgcl
簡介 Solve captcha in NTHU portal using TensorFlow.js.
檔案大小 33.24 MB
安裝次數 124
目前版本 0.0.3
更新時間 2022-09-15
上架時間 2022-09-07
評分 5.00/5 共 1 次評分
開發者 Po-Chen Lin
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/danielpclin/nthu-portal-captcha-solver-extension
支援的語言 zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NTHU portal captcha solver",
    "version": "0.0.3",
    "description": "Solve captcha in NTHU portal using TensorFlow.js.",
    "permissions": [
        "webNavigation"
    ],
    "background": {
        "service_worker": "src\/service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.ccxp.nthu.edu.tw\/ccxp\/INQUIRE\/",
                "https:\/\/www.ccxp.nthu.edu.tw\/ccxp\/INQUIRE\/index.php"
            ],
            "js": [
                "src\/content.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "manifest_version": 3,
    "icons": {
        "16": "images\/panda_16.png",
        "32": "images\/panda_32.png",
        "48": "images\/panda_48.png",
        "128": "images\/panda_128.png"
    }
}