I use content script in my Chrome extension. content scripts are injected at "document_start".
window.onload = function() {console.log("window onload event fired.");}
I run the above code in content script, but when I load a page, the onload event is not fired.
Is there anything wrong?