Skip to content

Instantly share code, notes, and snippets.

@wteuber
Last active March 5, 2021 16:06
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 wteuber/5593199 to your computer and use it in GitHub Desktop.
Save wteuber/5593199 to your computer and use it in GitHub Desktop.
minimalistic bot for Google's atari breakout
/* go to https://elgoog.im/breakout/ and run the snippet in your js console (works only for one level): */
hit = function($) { $('#breakout-paddle').style.left = (parseInt($('#breakout-ball').style.left, 10)-50).toString()+'px'; window.setTimeout(function(){ hit($); }, 10)}; hit($);
@Hiojios
Copy link

Hiojios commented Aug 22, 2020

how use

@wteuber
Copy link
Author

wteuber commented Aug 24, 2020

@Hiojios

It's been a while...
I don't know when Google disabled this easter egg, but it seems to been kept alive here: https://elgoog.im/breakout/

The original script doesn't work anymore, because the Chrome API changed. I updated the script.

  1. Goto https://elgoog.im/breakout/
  2. Open developer console
  3. Paste script, hit Enter
  4. Just watch

@Hiojios
Copy link

Hiojios commented Dec 2, 2020

Ok

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment