Skip to content

Instantly share code, notes, and snippets.

@spider-man-tm
Last active January 17, 2021 05:00
Show Gist options
  • Save spider-man-tm/929e987efd577c3dec5504f9e7f72e7c to your computer and use it in GitHub Desktop.
Save spider-man-tm/929e987efd577c3dec5504f9e7f72e7c to your computer and use it in GitHub Desktop.
Google Chrome で定期的にボタンクリックイベントを発生させる。
function KeepClickingConnectButton() {
console.log("40分ごとに再接続");
document.querySelector("#top-toolbar > colab-connect-button")
.shadowRoot.querySelector("#connect").click();
}
let id = setInterval(KeepClickingConnectButton, 2400*1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment