秀亭看书
// ==UserScript==
// @name 秀亭看书
// @namespace https://bbs.tampermonkey.net.cn/
// @version 0.1.0
// @description 秀亭看书去掉移出鼠标文字模糊
// @author lengshan
// @match https://www.xiuting.cc/*
// @grant unsafeWindow
// ==/UserScript==
(function() {
'use strict';
// Your code here...
unsafeWindow.document.body.onmouseleave=undefined
unsafeWindow.document.oncopy=undefined
})();