@duckduckgo/content-scope-scripts
    Preparing search index...

    Interface GetCaptchaInfoAction

    Locate a captcha on the page and return the information native needs to solve it (url, site key, type).

    interface GetCaptchaInfoAction {
        actionType: "getCaptchaInfo";
        captchaType?: string;
        dataSource?: string;
        id: string;
        retry?: RetryConfig;
        selector: string;
    }
    Index

    Properties

    actionType: "getCaptchaInfo"
    captchaType?: string

    selects the captcha handler. Supported values: "image", "cloudFlareTurnstile". When omitted, the deprecated handler runs and self-detects recaptcha2/recaptchaEnterprise from the DOM.

    dataSource?: string
    id: string
    retry?: RetryConfig
    selector: string

    selector for the captcha container