Skip to content

Instantly share code, notes, and snippets.

@tapvt
Created December 3, 2015 15:21
Show Gist options
  • Save tapvt/88ce50db3d0e22668bf5 to your computer and use it in GitHub Desktop.
Save tapvt/88ce50db3d0e22668bf5 to your computer and use it in GitHub Desktop.
// Paste this into your Chrome Console
var check = function () {
var content = document.body.textContent || document.body.innerText;
var open = content.indexOf('Kitchen’s Open') !== -1;
if (open) {
alert ('Kitchen is Open!')
} else {
console.log('still waiting....');
setTimeout(check, 10000);
}
};
check();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment