change the list order in GitLab Issue Boards
目前為
// ==UserScript==
// @name GitLab Issue Board
// @namespace http://tampermonkey.net/
// @version 0.1
// @description change the list order in GitLab Issue Boards
// @author Longbiao CHEN
// @match gitlab.longbiaochen.com/*
// @grant none
// @license GPLv3
// @require https://code.jquery.com/jquery-3.2.1.min.js
// ==/UserScript==
GM_addStyle ( `
div.boards-list > div:nth-child(1) {
display:none !important;
}
` );