Chrome“开发者工具”元素 - 隐藏烦人的黄色尺寸框
当我将鼠标悬停在 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...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
来自已发布的错误:“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
您可能想检查 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.
您可以很容易地自己调整开发工具。基本上,请按照这些说明开始操作。
然后,在
inspector.js
内,通过应用这个小补丁来调整WebInspector.highlightDOMNode
。如需了解更多信息,请查看这篇关于扩展 Chrome DevTools 的文章。
You can pretty easily tweak devtools yourself. Basically, follow these instructions to get started.
Then, inside
inspector.js
, tweakWebInspector.highlightDOMNode
, by applying this small patch.Fore more info, check out this post on extending Chrome DevTools.