Greasy Fork is available in English.

Tumblr.com - Hide reblogs from Dashboard

This will hide any reblogs on your Tumblr dashboard.

< Feedback on Tumblr.com - Hide reblogs from Dashboard

Review: OK - script works, but has bugs

§
Posted: 11.01.2017

A little better

Awesome idea by just hidding the .is_reblog class.
I've added a little better because that breaks the continuous scrolling. Also doesnt working on the archive of someone's blog.

// ==UserScript==
// @name Tumblr.com - Hide reblogs from Dashboard
// @name:de Tumblr.com - Verhindert das Anzeigen von Reblogs auf dem Dashboard
// @namespace https://greasyfork.org
// @description This will hide any reblogs on your Tumblr dashboard.
// @description:de Dieses Skript verhindert das Anzeigen von geteilten Inhalten auf deinem Tumblr-Dashboard.
// @author yamavu
// @homepage https://greasyfork.org/scripts/3140-tumblr-com-hide-reblogs-from-dashboard
// @include http://www.tumblr.com/dashboard
// @include https://www.tumblr.com/dashboard
// @include http*://*.tumblr.com/*
// @grant GM_addStyle
// @run-at document-start
// @version 1.02
// ==/UserScript==
(function () {
GM_addStyle('.posts .is_reblog {height:10px; !important; } .posts .is_reblog div{display:none !important; }');
}) ();

I just changed the main is_reblog to height of 10px so you still see the post was there and then hid the divs under the is_reblog. Work wonderful. Also included on http*://*.tumblr.com/*

Post reply

Sign in to post a reply.