Greasy Fork 支持简体中文。

深大公文通去敏小助手

去除深大公文通去隐形水印、去个人信息

// ==UserScript==
// @name            深大公文通去敏小助手
// @namespace       http://tampermonkey.net/
// @version         1.0.2
// @description     去除深大公文通去隐形水印、去个人信息
// @author          HydrogenE7
// @match           https://www1.szu.edu.cn/board/view.asp?*
// @grant           GM_setValue
// @grant           GM_getValue
// @license         MIT
// @noframes
// ==/UserScript==

(function() {
    'use strict';
    //watermark('深圳大学校园公文通','','');
    window.onload = function(){
        document.body.innerHTML = document.body.innerHTML.replace(/<font color="#F8F8F8" style="font-size:9pt">(.*)<\/font>/gm, '');
        document.body.innerHTML = document.body.innerHTML.replace(/watermark\('深圳大学校园公文通',/gm, '//watermark(\'深圳大学校园公文通\',');
        document.body.innerHTML = document.body.innerHTML.replace(/<div id="mark_div.*<\/div>/gm, '');
        document.body.innerHTML = document.body.innerHTML.replace(/<font class="fontcolor1">(.*)个人中心|<\/font>/gm, '<font class="fontcolor1">个人中心|<\/font>');
        document.body.innerHTML = document.body.innerHTML.replace(/【本文属内部通告,未经发文单位同意,不得截屏、拍图或复制转发】/gm, '');
    }
})();