针对中大电信院官网所有子网页标题被缩略而影响观感的问题,本脚本对其子网页标题进行完整显示。
// ==UserScript==
// @name 完整显示子网页标题
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 针对中大电信院官网所有子网页标题被缩略而影响观感的问题,本脚本对其子网页标题进行完整显示。
// @author HubertSing
// @license MIT
// @match http://seit.sysu.edu.cn/
// @grant GM_addStyle
// ==/UserScript==
(function () {
'use strict';
GM_addStyle(`
.field-content.textellipsis{
overflow: visible;
white-space: normal;
}
.blockheight320{
height:440px
}
.blockheight270{
height:390px
}
`)
})();