How to make Quriobot disappear completly (after finishing)
If you want Quriobot to disappear completely you will need to add the following JavaScript function (requires developer mode) to your bot:
function() {
quriobot.hide_frame();
setTimeout(function(){
document.getElementById("botbutton").classList.remove('show');
}, 0)
}
Line 2 will make the bot disappear
Line 4 will also make the sticky avatar disappear