Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. // ==UserScript==
  2. // @name 42seoul
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://apply.42seoul.kr/users/*/introductions_users
  8. // @match https://apply.42seoul.kr/users/*/introductions_users
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12.  
  13. setTimeout(function(){location.reload()},30000)
  14.  
  15. a=$('.btn.btn-sm.pull-right')
  16. for(i=0;i<a.length;i++)
  17. {
  18. b=a[i]
  19. if(b.outerHTML.indexOf('등록을 취소할 경우')==-1)
  20. {
  21. confirm=function(a){}
  22. b.removeAttribute('data-confirm')
  23. b.removeAttribute('data-commit')
  24. b.removeAttribute('data-cancel')
  25. b.click()
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement