Chat Widget Builder Widget Builder Web-Widget Builder Tenant ID Primary colour Agent name Subtitle Welcome message Logo URL Privacy URL Webhook URL (n8n for now) Generate Client embed snippet Config JSON Download JSON `; $('json').textContent = JSON.stringify(cfg, null, 2); $('download').onclick = () => { const blob = new Blob([JSON.stringify(cfg,null,2)], {type:'application/json'}); const a = document.createElement('a'); a.href = URL.createObjectURL(blob); a.download = t + '.json'; a.click(); URL.revokeObjectURL(a.href); }; };