I'm now converting my chrome extension to safari extension.
My chrome extension uses the API to open a new private window like this.
chrome.windows.create({"url": url, "incognito": true});
Does anyone know the way to implement this functionality in safari extension?
I tried looking it up, but I could only find the way to open a normal window as below.
safari.application.openBrowserWindow();