AutoCAPTCHA

Automatic recognize and input for simple CAPTCHA. (Google Cloud Vision API supported)

AutoCAPTCHAคืออะไร?

AutoCAPTCHA เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Takuya Ono และคุณลักษณะหลักของมันคือ "Automatic recognize and input for simple CAPTCHA. (Google Cloud Vision API supported)"

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        The simple CAPTCHA can be recognized automatically by OCR.

I met a CAPTCHA that has not been deformed at all. Then I thought that I can pass with OCR and I tried Open Source Tesseract.js. If it is a simple CAPTCHA, it was recognized automatically.

If you get the API Key,  you can also use the Google Could Vision API instead of the slow Tesseract.js that is offline JavaScript OCR.

What News!
0.7 Upgrade library packages. Maintenance of English locale.
0.6 Supporting for enhancements of CORB at Chrome 73 on Google Cloud Vision API.

Notes
This extension uses Google Tag Manager and Google Analytics as gathering information for future enhancements.

Permissions:
storage - For storing option settings.                    

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

ชื่อ AutoCAPTCHA AutoCAPTCHA
ID npgklhnojgnokoapbmkcafdodkkklgmd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/autocaptcha/npgklhnojgnokoapbmkcafdodkkklgmd
คำอธิบาย Automatic recognize and input for simple CAPTCHA. (Google Cloud Vision API supported)
ขนาดไฟล์ 93.56 KB
จำนวนการติดตั้ง 1,309
เวอร์ชันปัจจุบัน 0.8.2022.4240
อัปเดตครั้งล่าสุด 2022-04-30
วันที่เผยแพร่ 2019-07-31
คะแนน 2.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Takuya Ono
อีเมล [email protected]
ประเภทการชำระเงิน in_app
URL หน้านโยบายความเป็นส่วนตัว https://docs.google.com/document/d/e/2PACX-1vRM2SXohzY6shEZFFXmguJAJqWf-7LUyrMJHIkA5-eNyj34oAcQfiaxvEbCH8i4Bc1QabBw3f3X9zmM/pub
ภาษาที่รองรับ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "service_worker": "Background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "lib\/tesseract.min.js",
                "lib\/worker.min.js",
                "lib\/jquery.min.js",
                "MessageCmd.js",
                "AutoCAPTCHA.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "icons": {
        "128": "img\/logo128.png",
        "48": "img\/logo48.png",
        "24": "img\/logo24.png",
        "16": "img\/logo16.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/vision.googleapis.com\/v1\/*",
        "https:\/\/cdn.jsdelivr.net\/gh\/naptha\/*",
        "https:\/\/tessdata.projectnaptha.com\/*",
        "https:\/\/www.googletagmanager.com\/*",
        "https:\/\/www.google-analytics.com\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-eval';"
    },
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "name": "__MSG_AutoCAPTCHA_name__",
    "description": "__MSG_AutoCAPTCHA_description__",
    "short_name": "__MSG_AutoCAPTCHA_short_name__",
    "author": "Takuya Ono",
    "default_locale": "ja",
    "version": "0.8.2022.4240"
}