Skip to content

Instantly share code, notes, and snippets.

@pope
Created April 15, 2018 04:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pope/d3542842e1ac9daad216e2046456ca86 to your computer and use it in GitHub Desktop.
Save pope/d3542842e1ac9daad216e2046456ca86 to your computer and use it in GitHub Desktop.
duckor.horse cheat
(function() {
const btn = document.getElementById('tryagain');
const observer = new MutationObserver(() => { if (!btn.disabled) btn.click() });
observer.observe(btn, {attributes: true});
btn.click();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment