Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name My SO Script
- // @description A brief description of your script
- // @author Your Name
- // @include http://stackoverflow.com/*
- // @version 1.0
- // ==/UserScript==
- $('.question-summary').not('.tagged-interesting').hide();
- $('.question-summary.tagged-interesting').find('.unanswered').parents(".question-summary").css("background-color","#EBB");
- $('.question-summary.tagged-interesting').find('.answered-accepted').parents(".question-summary").css("background-color","#ACB899");
- $("#sidebar .module:first").append("<p class='ar'><a href=\"javascript:(function(){$('.question-summary').not('.tagged-interesting').slideToggle()})();\">show all uninteresting »</a></p>");
Advertisement
Add Comment
Please, Sign In to add comment