Tumblr Note Savior
Not the drawings I promised yet, but I think this will interest a lot of tumblr folks anyways?
So I was messin about on the internet when I thought to myself: “Tumblr Savior seems to work great for hiding unwelcome posts. But people still suffer from an influx of notes for posts that they’d rather not see. There’s no reason the same idea couldn’t be adapted to tidy up notifications off the dash, right?”
and then because i am a big nerdy nerd i dived right into doing just that. unfortunately I do not know even a little bit of javascript? but luckily I have a dad who’s been doing js for a living lately! so he confirmed my guesses as to what did what, and I banged out an edit on the ever-popular Tumblr Savior script.
With any luck, someone who actually knows a lick of JavaScript will pick this up, tidy it, and add in whatever’s needed to put the “first_notification” and “last_notification” classes back when they’re hidden. Then they can put it on userscripts or make it an extension for Chrome or whatever, this was kind of just proof of concept for myself.
For anyone who is also a giant nerdy nerd, and wants to use/edit it, here’s the script and how to use it:
Add it to whatever Userscript extension you’re using, however you do that. I dunno if Greasemonkey even supports manually adding scripts? Google it or something, I guess. Then edit the code as follows…
Block posts like this, with their permalinks:
var blackList = new Array('http://your-url.tumblr.com/numbershere/post-name', 'also a permalink', 'and again like this for every post you want to block');
I left the whitelist in case maybe you want to see if a certain person liked one of the posts you are sick of being inundated with. Put their username in like this:
var whiteList = new Array('i am a username', 'and so am i');
And boom! Notes hidden! Any reblogs of the post by people you follow will still show up, this is purely for notifications.
edit: Check the note eraser tag for the new, finished version of this!