Paradox Plaza 降低对比度

去除forum.paradoxplaza.com帖子的黑色背景

  1. // ==UserScript==
  2. // @name Paradox Plaza 降低对比度
  3. // @namespace https://gqqnbig.me
  4. // @version 0.1
  5. // @description 去除forum.paradoxplaza.com帖子的黑色背景
  6. // @author gqqnbig
  7. // @match https://forum.paradoxplaza.com/forum/index.php?*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. for(var i=0;i<document.styleSheets.length;i++)
  15. {
  16. if(!document.styleSheets[i].rules)
  17. continue;
  18. for(var j=0;j<document.styleSheets[i].rules.length;j++)
  19. {
  20. if(document.styleSheets[i].rules[j].selectorText &&
  21. document.styleSheets[i].rules[j].selectorText.trim()===".paradox_developer_message_test .primaryContent")
  22. {
  23. document.styleSheets[i].rules[j].style.removeProperty("background-color");
  24. return;
  25. }
  26. }
  27. }
  28. })();

QingJ © 2025

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