// snippet.js const chatHTML = ` Chat with n8n
Bot Avatar

Chat with Paul

`; function injectChat() { const container = document.createElement('div'); container.innerHTML = chatHTML; document.body.appendChild(container); } // Inject the chat when the script is loaded injectChat();