Greasy Fork

Greasy Fork is available in English.

Tumblr.com - Hide reblogs from Dashboard

This will hide any reblogs on your Tumblr dashboard.

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name Tumblr.com - Hide reblogs from Dashboard
// @name:de Tumblr.com - Verhindert das Anzeigen von Reblogs auf dem Dashboard
// @namespace http://greasyfork.icu
// @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
// @author Joe Schmoe
// @homepage http://greasyfork.icu/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.031
// ==/UserScript==
(function () {
GM_addStyle('.posts .is_reblog {height:10px; !important; } .posts .is_reblog div{display:none !important; }');
}) ();