Magpie HTML - v0.1.3
    Preparing search index...

    Interface AssetsMetadata

    Categorized assets extracted from HTML.

    Contains all external assets referenced in the document, organized by type. All URLs are normalized to absolute format if a base URL is available.

    interface AssetsMetadata {
        images?: string[];
        stylesheets?: string[];
        scripts?: string[];
        fonts?: string[];
        media?: string[];
        manifests?: string[];
        preloads?: PreloadResource[];
        connectionHints?: ConnectionHint[];
    }
    Index

    Properties

    images?: string[]

    Image URLs from img, picture, srcset, and meta tags

    stylesheets?: string[]

    Stylesheet URLs from link tags

    scripts?: string[]

    Script URLs from script tags

    fonts?: string[]

    Font URLs extracted from CSS

    media?: string[]

    Media URLs from video, audio, source, and track elements

    manifests?: string[]

    Web app manifest URLs

    preloads?: PreloadResource[]

    Preload/prefetch resource hints

    connectionHints?: ConnectionHint[]

    DNS prefetch and preconnect hints