I asked the same question years ago, but unfortunately the answer no longer seems to work.
I've built an extension that modifies the SERPs, but the code no longer seems to work.
How can an extension detect that Google Instant search has been performed and results displayed?
The answer would still be the same as the (deleted) answer on your previous one - DOM Mutation listeners. You define what kind of node you're looking for, and react to it being inserted.
Since then, event-based approach became deprecated, and the new way to do it is
MutationObserver
.You may also want to look at the
mutation-summary
library.