mask fix screen

添加水印层,修复联想显示器,灰色色值显示问题

  1. // ==UserScript==
  2. // @name mask fix screen
  3. // @name:zh-CN 拯救联想显示器灰色显示问题
  4. // @noframes true
  5. // @namespace https://github.com/jackdizhu
  6. // @version 0.5.1
  7. // @description:zh-CN 添加水印层,修复联想显示器,灰色色值显示问题
  8. // @description:en Fix screen gray display problem
  9. // @author jackdizhu
  10. // @match *
  11. // @include *
  12. // @grant none
  13. // @run-at document-end
  14. // @require https://gf.qytechs.cn/scripts/407021-get-os-info/code/get%20os%20info.js?version=826356
  15. // @description 添加水印层,修复联想显示器,灰色色值显示问题
  16. // ==/UserScript==
  17.  
  18. (function() {
  19. 'use strict';
  20. if (!window.$os.Windows) {
  21. return false
  22. }
  23. var $div = document.createElement('div')
  24. $div.style = `
  25. position: fixed;
  26. pointer-events: none;
  27. width: 100%;
  28. height: 100%;
  29. left: 0;
  30. top: 0;
  31. background: #eee;
  32. opacity: 0.1;
  33. z-index: 999999999;
  34. `
  35. document.body.appendChild($div)
  36. })();

QingJ © 2025

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