I'm working on a project that requries multiple windows that can be moved accross multiple monitors, but all cross talk with each other, my understanding is that normally you would use JS window.open() to do this and then send messages back and forth in a similar fashion to web workers and audio worklets... This seems to work fine in browser, but when I attempt this in webview2, I get a "Get an app to open this 'About' link" error.
What is the recommended workaround for this? And opening actual browser tabs isn't a viable solution, as the windows all need their own, styled manually made title/control bar, as well as no address bars or browser functions, etc. I guess the heart of the question is, how do I make this feel as C-like as possible from a UI perspective, without having to go and learn C and port my entire project over?