装个油猴插件,把 setInterval 函数给重写掉
```javascript
// ==UserScript==
// @
name New script
ydmap.cn// @
namespace Violentmonkey Scripts
// @
match https://ftty.ydmap.cn/booking/schedule/101332*// @
grant none
// @
version 1.0
// @
author -
// @
description 2024/8/19 19:05:07
// ==/UserScript==
window._setInterval = window.setInterval;
window.setInterval = (fn, delay) => {
if (fn.toString().includes('debugger')) {
return;
}
else {
return window._setInterval(fn, delay);
}
}
```