Is it possible to navigate to a new tab using js and then run the script on the new page?
ex:
window.open(url, '_blank'); setTimeout(function wait(){ //script to load on the new tab. },5000);```