Captcha Recognizer

Automatically recognize and fill in the webpage captcha code.

Captcha Recognizerคืออะไร?

Captcha Recognizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Holey และคุณลักษณะหลักของมันคือ "Automatically recognize and fill in the webpage captcha code."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Captcha Recognizer

ดาวน์โหลดไฟล์ส่วนขยาย Captcha Recognizer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        # Introduction

This easy-to-use extension do not need any your operate. Just install, and it will automatically recognize and fill in the captcha code of any support webpage.

# Supported Website List

* CHT
    - Member Username Password Login
* NCKU
    - Course Information & Enrollment System
    - Parking ID Application (Student)
    - Student Leave Management System
    - Stadium Online Rental System
    - Others unknow system which but use captcha
* Sports Center
    - Hsinchu City Zhuguang Civil Sports Center
    - Hsinchu Country Zhubei Civil Sports Center
* THSRC
    - Booking System

# Releases

* Version 2.2, 2.3
    - Added the support of CHT member username password login.
* Version 2.1
    - Updated manifest_version.
    - Updated the way of detecting captcha.
* Version 1.6
    - Added the support of Sports Center booking system.
* Version 1.5
    - Code optimization.
* Version 1.4
    - Added the support of THSRC booking system.
* Version 1.3
    - Supported all system which have same captcha style.
* Version 1.2
    - Changed default locale to zh-TW.
    - Updated API response and modified the extension to match it.
* Version 1.1
    - Updated the way of detecting captcha.
    - Supported more system.
* Version 1.0
    - Created extension.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Captcha Recognizer Captcha Recognizer
ID gmgpcbbmghjlklnphdiindlkehjjniib
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/captcha-recognizer/gmgpcbbmghjlklnphdiindlkehjjniib
คำอธิบาย Automatically recognize and fill in the webpage captcha code.
ขนาดไฟล์ 71.9 KB
จำนวนการติดตั้ง 1,664
เวอร์ชันปัจจุบัน 2.3
อัปเดตครั้งล่าสุด 2023-11-29
วันที่เผยแพร่ 2020-09-07
คะแนน 3.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Holey
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://ocr.holey.cc
ภาษาที่รองรับ en,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Captcha Recognizer",
    "version": "2.3",
    "default_locale": "zh_TW",
    "description": "__MSG_app_description__",
    "icons": {
        "16": "favicon-16x16.png",
        "32": "favicon-32x32.png",
        "48": "favicon-48x48.png",
        "64": "favicon-64x64.png",
        "128": "favicon-128x128.png"
    },
    "action": {
        "default_title": "Captcha Recognizer",
        "default_icon": {
            "16": "favicon-16x16.png",
            "32": "favicon-32x32.png",
            "48": "favicon-48x48.png",
            "64": "favicon-64x64.png",
            "128": "favicon-128x128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.cht.com.tw\/*",
                "*:\/\/*.cyc.org.tw\/*",
                "*:\/\/*.ncku.edu.tw\/*",
                "*:\/\/*.thsrc.com.tw\/*",
                "*:\/\/*.xuanen.com.tw\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "jquery.min.js",
                "content.aspx_5c.js",
                "content.cht.js",
                "content.ncku.js",
                "content.thsrc.js",
                "main.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/ocr.holey.cc\/*"
    ],
    "short_name": "Captcha OCR"
}