We have a site, where with a simple JavaScript
We hide the ad
I found the way how to hide address bar after first click
if (document.body.webkitRequestFullScreen) {
window.addEventListener('click', function(e) {
if (e.target.type != 'text' && e.target.type != 'password') {
body.webkitRequestFullScreen();
window.setTimeout(function() {
document.webkitCancelFullScreen();
}, 500);
}
}, false);
}