NGA Agent

非常时期的非常手段

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Author
snyssss
Daily installs
0
Total installs
32,912
Ratings
22 2 0
Version
1.5.3
Created
2022-10-04
Updated
2023-03-06
Size
7.93 KB
License
MIT
Applies to

非常时期的另一种不用修改浏览器UA的方案,目前基本可用。

=======

关于提的多的一个问题,摸鱼脚本不兼容。

因为他的快捷键和泥潭的主容器绑一块了,所以清除泥潭主容器事件的时候顺带也清除掉了。

解决方案是让摸鱼脚本别绑在主容器上,或者在本脚本后执行。

最好的办法当然是去原作者那边催更。

另一种可行的方案是手动修改摸鱼脚本,让他推迟执行。

打开脚本源码,最后几行。

script.run() 改为 setTimeout(()=> script.run(), 0)

后面的0就是延迟时间,毫秒数,如果0不起效的话可以再增加一点,比如100、200(0.1、0.2秒)。