Twitter usernames > "real names"

Make usernames more prominent, "real names" less promiment.

  1. // ==UserScript==
  2. // @name Twitter usernames > "real names"
  3. // @namespace http://www.arthaey.com/
  4. // @version 1.0
  5. // @description Make usernames more prominent, "real names" less promiment.
  6. // @match http://twitter.com/*
  7. // @match https://twitter.com/*
  8. // @copyright Arthaey Angosii <arthaey@gmail.com>
  9. //
  10. // Backed up from http://userscripts.org/scripts/review/165346
  11. // Last updated on 2013-04-19
  12. // ==/UserScript==
  13.  
  14. GM_addStyle(".stream-item-header .fullname { font-weight: normal !important; font-size: 12px; color: #999; margin-left: 6px; }");
  15. GM_addStyle(".stream-item-header .username * { font-weight: bold !important; font-size: 14px; color: #333; float: left; }");