I am coding a page (for internal use at my company) to try and trigger "one click" browser based video conferencing. We use a web based video conferencing solution (www.bluejeans.com). Currently to start a video session, the user navigates to a url (www.bluejeans.com/, and logs in. We use this with a camera and projector, so the user then needs to drag the browser window onto the projector screen, maximise the window, and hit F11 to remove the browser gubbins.
I want to streamline the process to the user clicks a link, and the new browser window is opened at the correct link, maximised, moved to the correct screen and "F11'd" (browser bars etc removed).
The application is a c# web application, but I assume I'll need to use javascript for this client side window manipulation. I can get a window to open maximised, but can not make it remove the border / address bar.
Having read round it looks like it's for security reasons, which makes sense. However, given that I'm in a "closed" environment, I wonder if there's any other approach I could use? For example a Windows Forms app to trigger a new window?
Edit:
This is different to other questions I have seen that resize the content within the browser to make specific elements full screen. In this case I want to interact with the browser itself, hiding the toolbars and simulating an F11 keypress.