hi-pda background color adjuster

hi-pda论坛背景色修改器

  1. // ==UserScript==
  2. // @name hi-pda background color adjuster
  3. // @namespace http://www.hi-pda.com/
  4. // @version 0.1
  5. // @description hi-pda论坛背景色修改器
  6. // @author mark
  7. // @include http://www.hi-pda.com/forum/*
  8. // @run-at document-start
  9. // ==/UserScript==
  10.  
  11.  
  12. function addGlobalStyle(css) {
  13. var head, style;
  14. head = document.getElementsByTagName('head')[0];
  15. if (!head) { return; }
  16. style = document.createElement('style');
  17. style.type = 'text/css';
  18. style.innerHTML = css;
  19. head.appendChild(style);
  20. }
  21.  
  22. var css = ''
  23. + '.viewthread td.postcontent {background-color: #f5f5f5;}'
  24. + '#wrap td.postauthor {background-color: #f5f5f5;}'
  25. + '.forumcontrol .modaction {background-color: #f5f5f5;}'
  26. + '.content {background-color: #f5f5f5;}';
  27.  
  28. addGlobalStyle(css);
  29.