Created
November 22, 2013 20:07
-
-
Save mohammedh123/7605978 to your computer and use it in GitHub Desktop.
nadota ignore gm script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name nadota enhanced ignore | |
// @namespace nadota.com | |
// @description completely hide ignored posts (instead of greyboxing) | |
// @include http://nadota.com/showthread.php* | |
// @version 1 | |
// @grant none | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js | |
// ==/UserScript== | |
(function() | |
{ | |
$("<style type='text/css'>.postbitignored { display: none; }</style>").appendTo("head"); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment