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:

It is recommended to add closebutton = true so that the window can be closed, otherwise, this can be achieved using the default keyboard esc.

To make the size of the window fullscreen, size = "fullscreen" can be appended.

// 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.
    //size: "fullscreen"
    closebutton: true
};

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.
};