NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Reddit Remove Placeholder Thumbs
// @namespace McKlatch
// @author McKlatch
// @updateURL https://openuserjs.org/meta/McKlatch/Reddit_Remove_Placeholder_Thumbs.meta.js
// @description Removes the placeholder thumnail image ( !) from reddit posts without images.
// @include http://www.reddit.com/*
// @include http://reddit.com/*
// @include https://www.reddit.com/*
// @include https://reddit.com/*
// @version 2
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// @grant GM_addStyle
// ==/UserScript==
$('a.self, a.default').hide();
$('a.nsfw').css({"width": "21",
"background-position": "-50px -359px",
"flex": "0 0 20px"
});