From d2870aa067254dc173e191d1f2311e0b2c662090 Mon Sep 17 00:00:00 2001 From: Sebastian Tobie Date: Mon, 14 Jul 2025 11:54:32 +0200 Subject: [PATCH] improved the custom scroll injector --- custom-injectors.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/custom-injectors.js b/custom-injectors.js index 25816d5..290437b 100644 --- a/custom-injectors.js +++ b/custom-injectors.js @@ -5,7 +5,10 @@ console.debug("Tried to scroll"); }; window.scoll = function() { - console.debug("Tried to scroll using absolute coords") + console.debug("Tried to scroll using absolute coords", arguments) + } + Element.prototype.scrollIntoView = function(){ + console.debug("Tried to scroll to element:", this) } console.debug("Jump disabled"); })();