using System;
using System.Drawing;
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
// Set url if needed
var url = "https://google.com";
// Set your path to Chrome
var pathToBrowser = @"C:\Chromium\Bin\Chrome\chrome.exe";
BFS.Application.Start(pathToBrowser, url + " --incognito");
// Wait until browser starts, may need to set more time
BFS.General.ThreadWait(1000);
BFS.DisplayFusion.RunFunction("Move Window to Center of Monitor and Size to 75%");
}
}