POC

Branded page

Start Combell demo

Playground

Play around with the chat

Bookmarklet

Drag this button to your bookmarks bar to install:

Drag me in bookmarks bar

Installation Instructions

  1. Drag the blue button above to your browser's bookmarks bar
  2. Or right-click the button and select "Bookmark Link"
  3. When you're on any webpage, click the bookmark to inject the chat script

What it does

This bookmarklet will:

Bookmarklet Code

If you need the raw JavaScript code:

javascript:(function(){
  if(document.getElementById('kailo-chat-script')){return;}
  const s=document.createElement('script');
  s.id='kailo-chat-script';
  s.src='https://poc.kailo.be/bubble.js';
  s.defer=true;
  document.head.appendChild(s);
})();

Minified Version

javascript:(function(){if(document.getElementById('kailo-chat-script')){return;}const s=document.createElement('script');s.id='kailo-chat-script';s.src='https://poc.kailo.be/bubble.js';s.defer=true;document.head.appendChild(s);})();