@violentmonkey/types
    Preparing search index...

    Interface VMScriptGMInfoPlatform

    interface VMScriptGMInfoPlatform {
        arch:
            | "aarch64"
            | "arm"
            | "ppc64"
            | "s390x"
            | "sparc64"
            | "x86-32"
            | "x86-64"
            | "arm64"
            | "mips"
            | "mips64";
        browserName: string;
        browserVersion: string;
        fullVersionList?: { brand: string; version: string }[];
        mobile?: boolean;
        os: "mac" | "win" | "android" | "cros" | "linux" | "openbsd" | "fuchsia";
    }
    Index
    arch:
        | "aarch64"
        | "arm"
        | "ppc64"
        | "s390x"
        | "sparc64"
        | "x86-32"
        | "x86-64"
        | "arm64"
        | "mips"
        | "mips64"
    browserName: string
    browserVersion: string
    fullVersionList?: { brand: string; version: string }[]

    A copy of navigator.userAgentData.getHighEntropyValues() from the background script of the extension, so it's not affected by devtools of the web page tab. Only present in browsers that implement this API (Chromium >= 90).

    VM2.27.0

    mobile?: boolean

    A copy of navigator.userAgentData.mobile from the background script of the extension, so it's not affected by devtools of the web page tab. Only present in browsers that implement this API (Chromium >= 90).

    VM2.27.0

    os: "mac" | "win" | "android" | "cros" | "linux" | "openbsd" | "fuchsia"