Prevents kaggle from exiting due to inactivity

PHOTO EMBED

Tue Feb 25 2025 06:34:26 GMT+0000 (Coordinated Universal Time)

Saved by @reiddd #javascript

document.addEventListener("visibilitychange", function(event) {
    Object.defineProperty(document, "hidden", { value: false, configurable: true });
    Object.defineProperty(document, "visibilityState", { value: "visible", configurable: true });
});
content_copyCOPY