<script>
(function() {
var iframe = document.createElement('iframe');
iframe.src = 'https://tu-dominio.com/chat-embebido';
iframe.style.position = 'fixed';
iframe.style.bottom = '0';
iframe.style.right = '0';
iframe.style.width = '450px';
iframe.style.height = '600px';
iframe.style.border = 'none';
iframe.style.zIndex = '9999';
document.body.appendChild(iframe);
})();
</script>