I am developing a viewing station on which multiple users (many without computer experience) can watch video files. I'm not a programmer, so I'm using HTML/CSS, along with what JavaScript I can piece together, to open XSPF playlists in VLC Player 3.0.11 Vetinari on a Raspberry Pi 4 Model B running Raspbian 10. The browser these systems are using is Chromium 78.0.3904.108. I have encountered the following two roadblocks to completing this project.
Issue One: I need the HTML interface to open in a fullscreen viewport, on top of even the Debian taskbar. I imagine this can be done with JavaScript but have not been able to figure out how.
Issue Two: VLC Player is currently configured to play fullscreen whenever a user clicks a link in the HTML file, then close when either (1) the user clicks Stop or (2) the playlist ends, thereby returning the user to the HTML interface. There will be no keyboard hooked up to this Pi, so the mouse will offer the sole possible source of system access. Therefore, to limit users' potential mischief-making, I want to disable the menu that appears when a user right-clicks in VLC Player.
Any suggestion for a solution to either or both of these would be very much appreciated.