Greasy Fork is available in English.

My Fancy New Userscript

enter something useful

  1. // ==UserScript==
  2. // @name My Fancy New Userscript
  3. // @namespace http://your.homepage/
  4. // @version 0.1
  5. // @description enter something useful
  6. // @author You
  7. // @match https://www.ticketswap.nl/
  8. // @grant none
  9. // @include http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
  10. // ==/UserScript==
  11.  
  12. var reloadtime = Math.floor(Math.random() * 12000) + 11000;
  13.  
  14. setTimeout(function () { location.reload(1); }, reloadtime);
  15. addCard();
  16.  
  17. function addCard() {
  18. var cardOrder = $(".event_list").find(".type");
  19. if($(".event_list")[0]){
  20. $(".event_list").not(":has('.sold')").click();
  21. }
  22. }
  23.