NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==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);