页面怎么知道我正在用 firebug 分析它

2022-01-23 00:00:00 gmail javascript detection firebug

看:

!

哇!

网页如何知道我正在使用 firebug?

How can the webpage know I'm using firebug?

顺便说一句,我不知道如何显示半透明添加横幅.

BTW I couldn't find out how to show the translucent add banner.

推荐答案

你可以这样做:

if(window.console && window.console.firebug)
{
    alert("Firebug active!");
}

相关文章