Created
December 18, 2009 04:38
-
-
Save taizooo/259291 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: | |
(function(){ | |
b=20; | |
s=100; | |
t=document.getElementById('next_page_link').href.split('/')[5]; | |
max=t.substr(0,t.length-5); | |
min=max-s; | |
i=Math.floor(Math.random()*s+min); | |
u=(i<b)?'http://www.tumblr.com/dashboard':'http://www.tumblr.com/dashboard/2/'+i+'00000'; | |
window.location.replace(u); | |
} | |
)() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment