Chat Widget Builder

Widget Builder

Web-Widget Builder

Client embed snippet



Config 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);
  };
};






Scroll to Top