Fix NT read/unread

Tis for NEW NEW NT

  1. // ==UserScript==
  2. // @name Fix NT read/unread
  3. // @namespace http://nordic-t.co
  4. // @version 0.2
  5. // @description Tis for NEW NEW NT
  6. // @author Kostecki
  7. // @match https://nordic-t.co/*
  8. // @require https://greasyfork.org/scripts/2199-waitforkeyelements/code/waitForKeyElements.js?version=6349
  9. // @grant GM_addStyle
  10. // ==/UserScript==
  11.  
  12. //GM_addStyle(".read-fix .title a {color: #e74c3c;}");
  13.  
  14. //waitForKeyElements (".conversationList", fixthisshit);
  15. //waitForKeyElements ("#messages", fixthisshit);
  16.  
  17. //function fixthisshit() {
  18. //$('.conversationList > li').not('.unread').addClass('read-fix');
  19. //}
  20.  
  21. $(function() {
  22. $('.HasNew').siblings().css({"color": "white", "font-weight": "bold"});
  23. });