Tumblr note cleanup

A small line of code that removes all the useless likes and reblogs without comments from the notes list below a post.

< Feedback on Tumblr note cleanup

Review: Good - script works

§
Posted: 2015-05-03

Autoshow "more"

Make it autoclick "show more posts" to show all posts please

§
Posted: 2015-05-08
Make it autoclick "show more posts" to show all posts please

I'll try, but since tumblr has a limitation on the server itself to load only 50 notes per click, and the loading is rather slow... It doesn't seem to work too well.

§
Posted: 2015-05-08

I edited your script for myself with this:

function showmore()
{
var more = document.querySelector(".more_notes_link");
if(more)
{
  more.click();
    setTimeout(function() { showmore(); }, 200);
}
}

showmore();

yea, it slows my browser a bit... but I don't have to click around anymore

http://everyday-cute.tumblr.com/post/17051836048/its-tommy-the-pomeranian-pusheen-style

§
Posted: 2015-05-08

Eh, I just updated the script with something. Check it out. ^^

Post reply

Sign in to post a reply.