1
0
Fork 0
cookiedb/custom-injectors.js
2025-07-16 09:16:35 +02:00

18 Zeilen
573 B
JavaScript

/// disablejump.js
(function() {
function fakescroll() {
console.debug("Tried to scroll using absolute coords", arguments)
}
window.scroll(0, 0);
HTMLElement.prototype.scrollIntoView = function() {
console.debug("Tried to scroll");
};
window.scroll = fakescroll;
window.scrollBy = fakescroll;
window.scrollByLines = fakescroll;
window.scrollByPages = fakescroll;
Element.prototype.scrollIntoView = function(){
console.debug("Tried to scroll to element:", this)
}
console.debug("Jump disabled");
})();