Drudge Report Black Hat Hax0r Mode

A dark mode for Drudge Report with a 1337 |-|4><0R æsthetic

  1. // ==UserScript==
  2. // @name Drudge Report Black Hat Hax0r Mode
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.1
  5. // @description A dark mode for Drudge Report with a 1337 |-|4><0R æsthetic
  6. // @author Theodric Æðelfriþ
  7. // @license WTFPL
  8. // @match https://drudgereport.com/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Apply global styles
  16. const style = document.createElement('style');
  17. style.textContent = `
  18. body {
  19. background-color: #000000 !important;
  20. background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/80/Plasmakristall.gif') !important;
  21. background-size: auto !important;
  22. background-repeat: repeat !important;
  23. color: #00FF00 !important;
  24. font-family: "Courier New", Courier, monospace !important;
  25. }
  26.  
  27. a {
  28. color: #00FF00 !important;
  29. text-decoration: none !important;
  30. }
  31.  
  32. a:visited {
  33. color: #FFBF00 !important;
  34. }
  35.  
  36. a:hover {
  37. text-decoration: underline !important;
  38. }
  39.  
  40. table {
  41. background-color: #000000 !important;
  42. }
  43.  
  44. td {
  45. border-color: #00FF00 !important;
  46. }
  47. `;
  48.  
  49. document.head.appendChild(style);
  50. })();

QingJ © 2025

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