// ==UserScript== // @name GJ图书馆下载 // @namespace http://tampermonkey.net/ // @version 0.0.1 // @description try to take over the world! // @author 涛之雨 // @match http://read.nlc.cn/* // @require https://scriptcat.org/lib/637/1.4.8/ajaxHooker.js?sha384-totgFWqK9CTgaDR/gOSIizXzxC0ohuBlDHHpIMToFSeegnFyV2MsM9GlfFMLropx // @icon http://read.nlc.cn/static/style/images/gutu_logo.jpg // @grant none // @run-at document-start // ==/UserScript== /* global ajaxHooker*/ (function() { 'use strict'; ajaxHooker.filter([ {url: /.tpl$/}, ]); ajaxHooker.hook(request => { request.response = res => { res.text=res.text.replace("","") }; }); })();