Tumblr.com - Hide reblogs from Dashboard

This skin will hide any reblogs on your Tumblr dashboard.

当前为 2014-07-08 提交的版本,查看 最新版本

// ==UserScript==
// @name          Tumblr.com - Hide reblogs from Dashboard
// @namespace     https://greasyfork.org
// @description	  This skin will hide any reblogs on your Tumblr dashboard.
// @author        yamavu
// @homepage      https://greasyfork.org
// @include       http://www.tumblr.com/dashboard
// @include       https://www.tumblr.com/dashboard
// @grant         GM_addStyle 
// @run-at        document-start
// @version       1.0
// ==/UserScript==
(function () {
    GM_addStyle('#posts.posts .is_reblog {display:none !important; }');
}) ();