Chrome“开发者工具”元素 - 隐藏烦人的黄色尺寸框

发布于 2024-10-17 10:34:22 字数 153 浏览 0 评论 0原文

当我将鼠标悬停在 Chrome“开发人员工具”元素面板中的元素上时,如何隐藏 html 字段下出现的烦人的黄色框 - 它让我发疯,因为我看不到标签的底部等...

查看示例图片

How do I hide the annoying yellow box that appears under html fields when I hover over elements in the Chrome "Developer Tools" elements panel - it's driving me nuts as I can't see the bottom of my labels etc...

See example image

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

守望孤独 2024-10-24 10:34:22

来自已发布的错误:“https://code.google.com/p /chromium/issues/detail?id=282493”。如果在悬停元素(或 Mac 上的命令)之前按住键盘 Control (Ctrl) 键,则不会显示工具提示。这不是理想的解决方案,但只要您了解它,它就有效

From the posted bug: "https://code.google.com/p/chromium/issues/detail?id=282493". If you hold keyboard Control (Ctrl) key before hovering the element (or command on a mac) the tooltip won't show. Not the ideal solution but it works as long as you know about it

暮年 2024-10-24 10:34:22

您可能想检查 Chrome 16,它改进了元素工具提示。请对bug发表评论,并提及您想要解决的具体问题得到修复。

You might want to check Chrome 16 which got an improved element tooltip. Please comment on the bug and mention specific issues that you want to get fixed.

冷血 2024-10-24 10:34:22

您可以很容易地自己调整开发工具。基本上,请按照这些说明开始操作。

然后,在 inspector.js 内,通过应用这个小补丁来调整 WebInspector.highlightDOMNode

1150,1151c1150
<     // Do not highlight the DOM node.
<     //this.highlightDOMNodeForTwoSeconds(nodeId);
---
>     this.highlightDOMNodeForTwoSeconds(nodeId);

如需了解更多信息,请查看这篇关于扩展 Chrome DevTools 的文章。

You can pretty easily tweak devtools yourself. Basically, follow these instructions to get started.

Then, inside inspector.js, tweak WebInspector.highlightDOMNode, by applying this small patch.

1150,1151c1150
<     // Do not highlight the DOM node.
<     //this.highlightDOMNodeForTwoSeconds(nodeId);
---
>     this.highlightDOMNodeForTwoSeconds(nodeId);

Fore more info, check out this post on extending Chrome DevTools.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文