Hi,
I've been working on a Safari App Extension recently where I want to be able to open a new tab or window with an empty page similar to what the preferences in Safari allows me to do.
Unfortunately, using "about:blank" as the URL (as shown in the example below) results in a "Safari Can't Open the Page" error message despite the fact that it works as expected if I write it in the location bar in the browser.
window?.openTab(
with: URL("about:blank"),
makeActiveIfPossible: active,
completionHandler: nil
)How would I go about solving this issue?