diff --git a/src/commands/RouteChangeObserver.js b/src/commands/RouteChangeObserver.js index 45077dd..4d2fa99 100644 --- a/src/commands/RouteChangeObserver.js +++ b/src/commands/RouteChangeObserver.js @@ -203,7 +203,8 @@ class RouteChangeObserver { }; searchForInterestingNodesOnLoad() { - const nodes = document.querySelectorAll('img, iframe, link'); + // Ignore link on initial load because stylesheets are hard to track + const nodes = document.querySelectorAll('img, iframe'); nodes.forEach((node) => { this.interesting = this.waitForNode(node) || this.interesting; });