Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save BitChop/0976ac162e23a71abaae6024118a1d9c to your computer and use it in GitHub Desktop.
Save BitChop/0976ac162e23a71abaae6024118a1d9c to your computer and use it in GitHub Desktop.
var checkInterval = 10;
Window.prototype.targetLimiter = function (checkInterval) {
setImmediate(() => {
window.setInterval(() => {
if (window.document.getElementsByName('target')[0].value < 1.5) {
window.document.getElementsByName('target')[0].value = 1.5;
}
}, checkInterval);
});
}
window.targetLimiter(checkInterval);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment