更改网页背景色

此方法只是用于看大量文字的网页,且只适用于一个网页,

将下面的代码作为一个书签的网址部分,书签自己取。

javascript:(function(){var b=document.getElementsByTagName('*');
for(var i=0;i<b.length;i++)
{
  b[i].style.backgroundImage
='none';
  b [i].style.backgroundColor
='#272727';
  b[i].style.color
='#000000'
}
}
)
()

在自己当前网页,点击该书签即可!

原文地址:https://www.cnblogs.com/not-NULL/p/5089656.html