Last active
June 24, 2021 10:43
-
-
Save gu-ma/4c19e179c27b6d5769e0edb1e2fee846 to your computer and use it in GitHub Desktop.
Keep colab active (paste in the console)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Start | |
let keepActive = setInterval(()=>{ | |
document.querySelector("#top-toolbar > colab-connect-button").shadowRoot.querySelector("#connect").click(); | |
setTimeout(()=> { | |
document.querySelector("#top-toolbar > colab-connect-button").shadowRoot.querySelector("#connect").click(); | |
}, 5000); | |
}, 60000) | |
// Stop | |
clearInterval(keepActive) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment