Greasy Fork is available in English.
调整左栏避免名字长的仓库在左栏折行显示
// ==UserScript==
// @name Github左栏加宽
// @namespace blog.whscat.top
// @version 0.1
// @description 调整左栏避免名字长的仓库在左栏折行显示
// @author Anxys Uaen
// @match https://github.com/
// @grant none
// ==/UserScript==
(function() {
'use strict';
var obj= document.getElementsByClassName("team-left-column");
obj.item(0).style.cssText = "max-width:900px;width: 450px;";
})();