如何检测 Chrome Inspect Element 是否正在运行?

2022-01-11 00:00:00 console google-chrome javascript

有什么方法可以检测 Chrome Inspect Element 窗口是否正在运行?

Is there any way to detect whether the Chrome Inspect Element window is running?

例如,如果用户在 Chrome 中单击检查元素",则窗口会显示 Hello World 警报.

For example if the user clicks "Inspect Element" in Chrome, the window shows a Hello World alert.

这可能吗?

推荐答案

window.onresize = function(){
 if((window.outerHeight-window.innerHeight)>100)
   alert('hello');
}

实际操作:http://jsbin.com/ediquk/

请注意,resize 事件似乎被触发了两次,因此您应该检查您是否已经提醒了用户.

Note that it seems like the resize event gets fired twice, so you should check whether you alerted the use already.

相关文章