Advertisement
Guest User

postav_random

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