Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
1,385
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. // ==UserScript==
  2. // @name New Userscript
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author Anonymous
  7. // @match https://bhkszkolenia.cm-uj.krakow.pl/index.php/szkolenia/slajd/*
  8. // @require https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. setInterval(
  14. function() {
  15. if(!$('#bdalej').hasClass("disabled"))
  16. {
  17. setTimeout(function(){
  18. $('#bdalej')[0].click();
  19. },2000);
  20. }
  21. }, 1000);
  22. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement