cobix / Fix Cube Chat

// ==UserScript==
// @name         Fix Cube Chat
// @version      0.4
// @author       Cobix
// @match        https://www.cubetv.sg/*
// @grant        none
// @license      MIT
// @require      https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js
// ==/UserScript==

(function () {
  'use strict';
  var x;

  function refreshData() {
    x = 1;

    if ($('.show-more').is(":visible")) {
      $('.show-more').trigger("click");
      console.log("CLICA");
    }
    setTimeout(refreshData, x * 1000);
  }

  refreshData();
})();