mask fix screen

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

目前为 2020-07-09 提交的版本。查看 最新版本

// ==UserScript==
// @name         mask fix screen
// @namespace    https://github.com/jackdizhu
// @version      0.4.0
// @description  添加水印层,修复联想显示器,灰色色值显示问题
// @description  Fix screen gray display problem
// @author       jackdizhu
// @match        *
// @include      *
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
let isTOP = window.top === window
if (!isTop) {
    return false
}
let $div = document.createElement('div')
$div.style = `
position: fixed;
pointer-events: none;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: #eee;
opacity: 0.1;
z-index: 999999999;
`
document.body.appendChild($div)
})();

QingJ © 2025

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