Use JS to detect whether the browser uses developer tools under Chrome

Source: Internet
Author: User

When browsing the Web page, I inadvertently see a detection browser using the Developer tools method, which is hereby recorded

code example:

1 (function() {2     var re=/x/; 3     var i=0; 4     Console.log (re); 5 6     re.tostring=function() {7         return ' first ' + (++i) + ' Open console '8     }9 }) ();

The principle is as follows:

Console output if the object (including the regular expression is an object), the object's reference is preserved, and the output

is the real-time value of the object, that is, when the object content is changed to reflect its change (if the console is reopened),

Actually, yes. Recall the ToString () method of the object when you close and then turn on the console.

This overwrites the ToString method of the RE object, saves the counter I with the closure, and each time you reopen the console ToString

method is automatically called and the counter is incremented by 1.

Use JS to detect whether the browser uses developer tools under Chrome

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.