去除szu公文通水印

try to take over the szu!

// ==UserScript==
// @name         去除szu公文通水印
// @namespace    http://tampermonkey.net/
// @version      0.11
// @description  try to take over the szu!
// @author       student
// @match        *://www1.szu.edu.cn/board/view.asp?id=*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=szu.edu.cn
// @grant        GM_addStyle
// @license    MIT
// ==/UserScript==

(function() {
    'use strict';
    // Your code here...
    GM_addStyle('font[color="#F8F8F8"] {display:none !important;}')
})();