GC - Gormball Click Image to Continue

Clicking the image of the 'the gormball explodes on x' continues the game.

  1. // ==UserScript==
  2. // @name GC - Gormball Click Image to Continue
  3. // @namespace https://greasyfork.org/en/users/1202961-twiggies
  4. // @version 1.0
  5. // @description Clicking the image of the 'the gormball explodes on x' continues the game.
  6. // @author Twiggies
  7. // @match https://www.grundos.cafe/games/gormball/
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=grundos.cafe
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. const continueButton = document.querySelector('input[value="Continue!"],input[value="Play Again"]')
  14.  
  15. if (continueButton != null) {
  16. //Look for the image and attach the continue button onclick to it.
  17. const img = document.querySelector('#page_content > div.center > img');
  18. img.onclick = continueButton.onclick;
  19. img.style.cursor = 'pointer';
  20. }