Alcuinus

StackOverflow ticketing system

Jul 29th, 2011
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name           My SO Script
  3. // @description    A brief description of your script
  4. // @author         Your Name
  5. // @include        http://stackoverflow.com/*
  6. // @version        1.0
  7. // ==/UserScript==
  8.  
  9.  
  10. $('.question-summary').not('.tagged-interesting').hide();
  11. $('.question-summary.tagged-interesting').find('.unanswered').parents(".question-summary").css("background-color","#EBB");
  12. $('.question-summary.tagged-interesting').find('.answered-accepted').parents(".question-summary").css("background-color","#ACB899");
  13. $("#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