Set New Tab Page URL

This SDK empowers developers to implement a feature enabling the opening of new tabs in a browser on a certain specific page.

How to use it

To enable this feature, simply call the setNewTabPageURL method at the appropriate moment within your application.

Example

import com.equo.application.client.EquoApp;

import java.net.MalformedURLException;
import java.net.URL;

public class NewTabPageURLSample {
    public static void main(String[] args) throws MalformedURLException {
      EquoApp.create("CUSTOM-NEW-TAB-PAGE")
            .withBrowserUI()
            .setNewTabPageURL("https://equo.dev")
            .launch(new URL("https://equo.dev"));
    }
}

Result

NewTabPageURL