Userscript to wait for page to load before executing code techniques?

Greasemonkey (usually) doesn’t have jQuery. So the common approach is to use

window.addEventListener('load', function() {
    // your code here
}, false);

inside your userscript

Leave a Comment