reCAPTCHA Autoclick

Automatically clicks reCAPTCHA buttons when detected

reCAPTCHA Autoclick là gì?

reCAPTCHA Autoclick là một tiện ích mở rộng Chrome được phát triển bởi ayinope, và tính năng chính của nó là "Automatically clicks reCAPTCHA buttons when detected".

Ả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 reCAPTCHA Autoclick

Tải xuống các tệp mở rộng reCAPTCHA Autoclick 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

                        reCAPTCHA Autoclick is a simple chrome extension that automatically clicks reCATPCHA checkboxes on a page when it detects them.                    

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

Tên reCAPTCHA Autoclick reCAPTCHA Autoclick
ID caahalkghnhbabknipmconmbicpkcopl
URL Chính Thức https://chromewebstore.google.com/detail/recaptcha-autoclick/caahalkghnhbabknipmconmbicpkcopl
Mô tả Automatically clicks reCAPTCHA buttons when detected
Kích Thước Tệp 5.39 KB
Số Lần Cài Đặt 53,641
Phiên Bản Hiện Tại 0.0.0.2
Cập Nhật Lần Cuối 2017-12-29
Ngày Phát Hành 2017-12-28
Đánh Giá 3.28/5 Tổng số 126 Đánh Giá
Nhà Phát Triển ayinope
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "reCAPTCHA Autoclick",
    "description": "Automatically clicks reCAPTCHA buttons when detected",
    "version": "0.0.0.2",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "reCAPTCHA Autoclick"
    },
    "permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "autoclick.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ]
}