Protected color

添加文档保护色

  1. // ==UserScript==
  2. // @name Protected color
  3. // @version 1
  4. // @grant none
  5. // @namespace https://greasyfork.org/zh-CN/users/169070-crane1
  6. // @description 添加文档保护色
  7. // @include *
  8. // ==/UserScript==
  9.  
  10. window.setTimeout(function(){
  11. var bodyarray = document.getElementsByTagName("body")
  12. for(x in bodyarray){
  13. bodyarray[x].style.backgroundColor = "#CCE8CF";
  14. }
  15. },60
  16. )