Greasy Fork is available in English.
Export CN POE data.
tampermonkey默认应该就是这种情况下执行,https://www.tampermonkey.net/documentation.php#meta:run_at。
可能是某些兼容性BUG导致默认的没有生效。
我试了下你说的解决方案,结果报错,我看别人的脚本,都是"(function(){"开头执行的。
你可以告诉下你用的浏览器版本和tampermonkey版本吗,我看看是什么原因。
报错ERROR: Execution of script 'PoExport' failed! Cannot read properties of null (reading 'nextSibling')
ChatGPT给的解决办法,将代码开头的
(function(){
改成
document.addEventListener('DOMContentLoaded', function() {
就解决了,建议更新下脚本