GC - Grumpy Old King

Autofill the avatar joke for both Skarl and Hagan

  1. // ==UserScript==
  2. // @name GC - Grumpy Old King
  3. // @version 0.2
  4. // @description Autofill the avatar joke for both Skarl and Hagan
  5. // @author wibreth
  6. // @match https://www.grundos.cafe/medieval/grumpyoldking*
  7. // @match https://www.grundos.cafe/medieval/wiseking*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=grundos.cafe
  9. // @grant none
  10. // @namespace https://greasyfork.org/users/319295
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. /* globals $:false */
  16.  
  17. $('document').ready( function() {
  18. generateJoke();
  19. $('#question1').val('What');
  20. $('#question2').val('do');
  21. $('#question3').val('you do if');
  22. $('#question4').val('*Leave blank*');
  23. $('#question5').val('fierce');
  24. $('#question6').val('Grundos');
  25. $('#question7').val('*Leave blank*');
  26. $('#question8').val('has eaten too much');
  27. $('#question9').val('*Leave blank*');
  28. $('#question10').val('tin of olives');
  29. $('#wisdom6').val('nugget');
  30. });
  31. })();