We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我在violentmonkey/violentmonkey#2213 中报告了脚本加载延迟的问题,经过分析得出是uad.getHighEntropyValues这个方法会造成VM在document-start加载脚本时出现延迟,我尝试注释掉// const vmuad = voucher.startsWith("Violentmonkey") && GMinfo.platform ? await getVMUserAgentData(GMinfo.platform) : null;使得脚本可以快速加载。 与 @tophf 讨论了一些相关的内容,看看您能否解决这个问题,十分感谢。
// const vmuad = voucher.startsWith("Violentmonkey") && GMinfo.platform ? await getVMUserAgentData(GMinfo.platform) : null;
使用VM2.26.0,打开同步 page 模式, 访问greasyfork.org,点击任意链接,页面样式加载延迟。 注释掉语句后,恢复正常。
同步 page 模式
无
The text was updated successfully, but these errors were encountered:
嗯,这确实存在延迟问题,如果不考虑完美的情况下,可以放弃GM_info.userAgentData.getHighEntropyValues(),而只使用GM_info.platform和GM_info.userAgentData来解决加载延迟的问题。
GM_info.userAgentData.getHighEntropyValues()
GM_info.platform
GM_info.userAgentData
我先在本地测试一下,如果能完美处理那最好,如果不行,就退而求其次,优先解决加载延迟的问题。
Sorry, something went wrong.
感谢,violentmonkey/violentmonkey#2213 (comment) 这个办法可供参考,我觉得可以和版本号比较并行处理增加有效率。
这个问题会在下个月更新中修正,并可以完美解决。
F9y4ng
No branches or pull requests
1. 准备工作(确认预先完成的操作)
2. 描述错误信息(清楚而简洁地描述错误)
我在violentmonkey/violentmonkey#2213 中报告了脚本加载延迟的问题,经过分析得出是uad.getHighEntropyValues这个方法会造成VM在document-start加载脚本时出现延迟,我尝试注释掉
// const vmuad = voucher.startsWith("Violentmonkey") && GMinfo.platform ? await getVMUserAgentData(GMinfo.platform) : null;
使得脚本可以快速加载。 与 @tophf 讨论了一些相关的内容,看看您能否解决这个问题,十分感谢。3. 错误过程再现(请按示例填写行为步骤,直至复现您遇到的问题)
使用VM2.26.0,打开
同步 page 模式
, 访问greasyfork.org,点击任意链接,页面样式加载延迟。注释掉语句后,恢复正常。
4. 屏幕截图(如有屏幕截图,请添加以帮助解释您的问题)
无
5. 预期结果(清晰明了地描述您所期待想要什么样的结果)
6. 客户端信息(请在“冒号”后认真填写您的本地信息)
7. 脚本运行环境排查 (请确认环境条件并填写相关信息)
无
无
8. 附加信息(在此处添加您认为有用的其他信息)
The text was updated successfully, but these errors were encountered: