Action type "find": Searches for a pattern within a loaded page.

interface Find {
    pattern: string;
    type: "find";
    url: string;
}

Properties

Properties

pattern: string

The pattern or text to search for within the page.

type: "find"

The action type.

url: string

The URL of the page searched for the pattern.