1
0
Fork 0
cookiedb/custom-injectors.js

14 Zeilen
433 B
JavaScript

/// disablejump.js
(function() {
window.scroll(0, 0);
HTMLElement.prototype.scrollIntoView = function() {
console.debug("Tried to scroll");
};
window.scoll = function() {
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");
})();