Could not find the official documentation for this, but if you look at the implementation VRInstance, you will notice hideFullscreenwhich hides this button.
const vr = new VRInstance(bundle, 'VRTEST', parent, {
hideFullscreen: true,
...options,
});
iframe, , screenfull.js, - API.
DOM .
const vrIframe = document.getElementById('vrIframe');
document.getElementById('vrFullscreenButton').addEventListener('click', () => {
if (screenfull.enabled) {
screenfull.request(vrIframe);
}
});