URLs can be launched through the UNE app and viewed in a number of ways. URLs can either be launched in new browser tabs, or can show a popup window in the application. This is created through the Launch URL task in the custom panel.

Opening a URL in a modal:

// Perform a HTTP GET request to a web page and show the result inside the application:
return {
    url: "https://example.com/",
    method: "get",
    display: "show", // Show as a modal.
};

Opening a URL in a new tab:


// Perform a HTTP GET request to a web page and show the result in a new browser tab:
return {
    url: "https://example.com/",
    method: "get",
    display: "launch", // Launch in new browser tab.
};