Greasy Fork is available in English.
紧凑chatglm.cn网站
// ==UserScript==
// @name chatglm.cn clean
// @namespace http://tampermonkey.net/
// @version v1
// @description 紧凑chatglm.cn网站
// @author zsz
// @match https://chatglm.cn/main/alltoolsdetail
// @icon https://www.google.com/s2/favicons?sz=64&domain=chatglm.cn
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
function loop(){
var els=document.querySelectorAll("aside")
console.log('looping')
if(els.length>0){
if(els[0].style.display!="none"){
els[0].style.display = "none";
return;
}
}
setTimeout(loop,1000);
}
loop();
})();