// ==UserScript==
// @name New Userscript
// @namespace https://bbs.tampermonkey.net.cn/
// @version 0.1.0
// @description try to take over the world!
// @author You
// @match https://www.manhuatai.com/*
// @require https://scriptcat.org/lib/637/1.3.1/ajaxHooker.js
// @run-at document-start
// ==/UserScript==
(function () {
'use strict';
// ajaxHooker.protect();
ajaxHooker.filter([
{ type: 'xhr', url: '/getchapterinfov2', method: 'GET' },
]);
ajaxHooker.hook(request => {
console.log(request);
});
})();
data和response都为null,控制台预览有data,这是什么情况