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