8chan Dark Mode

Changes the color scheme to be darker and easier on the eyes. Does not currently support catalog view and the home page.

  1. // ==UserScript==
  2. // @name 8chan Dark Mode
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.33
  5. // @description Changes the color scheme to be darker and easier on the eyes. Does not currently support catalog view and the home page.
  6. // @author Ale$tar
  7. // @include http://8ch.net*
  8. // @include https://8ch.net*
  9. // @grant none
  10. // ==/UserScript==
  11. /* jshint -W097 */
  12. 'use strict';
  13.  
  14. // Your code here...
  15. function addGlobalStyle(css) {
  16. var head, style;
  17. head = document.getElementsByTagName('head')[0];
  18. if (!head) { return; }
  19. style = document.createElement('style');
  20. style.type = 'text/css';
  21. style.innerHTML = css;
  22. head.appendChild(style);
  23. }
  24.  
  25. addGlobalStyle('body { background:#161616 !important; color:#eee !important; }');
  26. addGlobalStyle('a { color:#cbcbcb !important; }');
  27. addGlobalStyle('.reply, .reply .body, .reply .body-line, .reply .intro, .reply label { background:#323232 !important; color:#d5d5d5 !important;}');
  28. addGlobalStyle('.reply { border-width:0 !important; }');
  29. addGlobalStyle('.subject { color:#36c !important; }');
  30. addGlobalStyle('.boardlist { background:#222 !important; }');
  31. addGlobalStyle('form table tr th { background:#533 !important; color:#ddd !important; }');
  32. addGlobalStyle('.pages { background:#222 !important; color:#ddd !important; }');
  33. addGlobalStyle('.description, .box { background:#444 !important; color:#dadada !important; padding:2px 12px; }');
  34. addGlobalStyle('.box-title { background:#333 !important; color:#fafafa !important;}');
  35. addGlobalStyle('table tbody tr:nth-of-type( even ) { background:#222 !important; color:#fafafa !important;}');
  36. addGlobalStyle('.tag-link {background:#333 !important; color:#eee !important;}');
  37. addGlobalStyle('.thread:hover {background:#252525!important; color:#eee !important;}');
  38.  

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址