AgentOS Extensions API - v1.0.3
    Preparing search index...

    A single scraped element

    interface ScrapeElement {
        attributes: Record<string, string>;
        href?: string;
        html: string;
        src?: string;
        tag: string;
        text: string;
    }
    Index

    Properties

    attributes: Record<string, string>

    Element attributes

    href?: string

    Href if it's a link

    html: string

    Element HTML content

    src?: string

    Src if it's an image/media

    tag: string

    Element tag name

    text: string

    Element text content