The (Tampermonkey) content script running at the page needs to get the scripts that should executed from the background page. This is done with some ...
addEventListener method. // @run-at document-start. The script will be injected as fast as possible. // @run-at document-body. The script will be injected if ...
That's why Tampermonkey needs to be injected into every page, because only pre-defined content scripts will be executed at document-start for sure. After the ...