NTHU portal captcha solver

Solve captcha in NTHU portal using TensorFlow.js.

NTHU portal captcha solver là gì?

NTHU portal captcha solver là một tiện ích mở rộng Chrome được phát triển bởi Po-Chen Lin, và tính năng chính của nó là "Solve captcha in NTHU portal using TensorFlow.js.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng NTHU portal captcha solver

Tải xuống các tệp mở rộng NTHU portal captcha solver 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

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên NTHU portal captcha solver NTHU portal captcha solver
ID ocjlojnojbkmgkamdnhakhkfmfcfcgcl
URL Chính Thức https://chromewebstore.google.com/detail/nthu-portal-captcha-solve/ocjlojnojbkmgkamdnhakhkfmfcfcgcl
Mô tả Solve captcha in NTHU portal using TensorFlow.js.
Kích Thước Tệp 33.24 MB
Số Lần Cài Đặt 124
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2022-09-15
Ngày Phát Hành 2022-09-07
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Po-Chen Lin
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/danielpclin/nthu-portal-captcha-solver-extension
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}