🏠 Home 

GreasyFork优化

自动登录账号、快捷寻找自己库被其他脚本引用、更新自己的脚本列表、库、优化图片浏览、美化页面、Markdown复制按钮

< Feedback on GreasyFork优化

Question/comment

§
Posted: 20-07-2024

上方的控制面板打开来无法点击项目啊。 都是灰色了, mc.png

WhiteSevsAuthor
§
Posted: 20-07-2024

每个页面都是这样?

WhiteSevsAuthor
§
Posted: 20-07-2024

可以看看控制台的遮罩层的层级

§
Posted: 20-07-2024

点不了一点啊。

§
Posted: 20-07-2024

点不了一点啊。

改成pops-maskstyle="z-index: 111111 才能点啊!

WhiteSevsAuthor
§
Posted: 20-07-2024

这是启用了啥插件/脚本z-index层级那么高直接到2^31-1上限了

§
Posted: 20-07-2024

这是启用了啥插件/脚本 z-index 层级那么高直接到 2^31-1 上限了

我就开了你一个油猴脚本啊 也可能是装的谷歌插件干的吗

WhiteSevsAuthor
§
Posted: 20-07-2024

控制台执行看看


let maxZIndex = 0;
let maxZIndexNode = null;
document.querySelectorAll("*").forEach((element,index) => {
let nodeStyle = window.getComputedStyle(element);
if (nodeStyle.position !== "static" && nodeStyle.display !== "none") {
let nodeZIndex = parseInt(nodeStyle.zIndex);
if(!isNaN(nodeZIndex)){
if(nodeZIndex>maxZIndex){
maxZIndex = nodeZIndex;
maxZIndexNode = element;
}
}
}
})

Post reply

Sign in to post a reply.