I've used the script for a while but it won't show up recently. The console says Uncaught (in promise) TypeError: document.body is null. It seems like the script executes before the page is loaded. After some research I change // @run-at document-start to // @run-at document-idle, which works for me, but idk if it's the proper way to solve this issue (bc I know nothing about script coding)
I've used the script for a while but it won't show up recently.
The console says
Uncaught (in promise) TypeError: document.body is null
. It seems like the script executes before the page is loaded.After some research I change
// @run-at document-start
to// @run-at document-idle
, which works for me, but idk if it's the proper way to solve this issue (bc I know nothing about script coding)