The Way of Communism

Removes all concept of grey/red/blacknames in chat and userlist in InstaSynch rooms

当前为 2014-09-26 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name The Way of Communism
  3. // @namespace http://instasynch.com/
  4. // @version 0.1
  5. // @description Removes all concept of grey/red/blacknames in chat and userlist in InstaSynch rooms
  6. // @match http://instasynch.com/rooms/*
  7. // @copyright Nyet
  8. // ==/UserScript==
  9.  
  10. function addGlobalStyle(css) {
  11. var head, style;
  12. head = document.getElementsByTagName('head')[0];
  13. if (!head) { return; }
  14. style = document.createElement('style');
  15. style.type = 'text/css';
  16. style.innerHTML = css;
  17. head.appendChild(style);
  18. }
  19.  
  20. addGlobalStyle("#chat .left .messages .message .username.registered { color: #666; }");
  21. addGlobalStyle("#chat .right .users .m { color: black; font-weight: normal; }");
  22. addGlobalStyle("#chat .right .users .registered { font-weight:normal; }");