Advertisement
Guest User

postav_odin_old

a guest
Nov 25th, 2012
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name postav_odin
  3. // @namespace mail.ru
  4. // @include http://my.mail.ru/cgi-bin/my/sm-photo?only_vote=1
  5. // ==/UserScript==
  6.  
  7. function clickOne() {
  8. document.querySelector('[data-type="1"]').click();
  9. }
  10.  
  11. function doScript() {
  12. clickOne();
  13. setTimeout(doScript, Math.floor(1000+Math.random()*1000));
  14. }
  15.  
  16. doScript ();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement