메인 html, body 하단에 작성
<script>
(function () {
const useragent = window.navigator.userAgent.toLowerCase();
if (useragent.indexOf('chrome') < 0 && useragent.indexOf('safari') < 0) {
document.body.style.cssText = 'height: auto';
document.body.innerHTML =
'<p style="padding: 20px; line-height: 1.6">
webkit 기반 브라우저(크롬, 사파리 등)에서 작동</p>';
}
})();
</script>