Member Junction
    Preparing search index...

    Command to open an external URL.

    This command opens a URL in a new browser tab, useful for linking to external resources like company websites, documentation, or third-party tools.

    {
    "type": "open:url",
    "label": "Visit Company Website",
    "icon": "fa-external-link",
    "url": "https://example.com",
    "newTab": true
    }
    interface OpenURLCommand {
        icon?: string;
        label: string;
        newTab?: boolean;
        type: "open:url";
        url: string;
    }
    Index

    Properties

    icon?: string

    Optional Font Awesome icon class to display on the button. Commonly: "fa-external-link" for external links.

    label: string

    Button label shown to the user. Should indicate the destination (e.g., "Visit Website", "View Documentation").

    newTab?: boolean

    Whether to open in a new tab. Default: true

    type: "open:url"

    Command type identifier

    url: string

    URL to open. Should be a complete URL including protocol (https://).