Randale / Just expand it all gitlab.

// ==UserScript==
// @name     Just expand it all gitlab.
// @version  1
// @grant    none
// @license MIT
// ==/UserScript==

setInterval(function () {
    var x = document.getElementsByClassName("click-to-expand");
    for (var i = 0; i < x.length; i++) {
      x[i].click();
    }
  },
  3000);