Possible duplicate:Is there a way to stop Firebug from working on a particular site?
Is it possible to disable firebug for all browsers using javascript, jquery, or php script. If yes, please describe how I can do this.
Thanks.
No, you cannot, firebug is a browser extension, and you do not have access to the extension manager from js.
You can check if the console is active, since the fastest way is
if('console' in window)
you can detect firebug with
if (window.console && window.console.firebug) {// Firebug enabled}
Javascript that detects Firebug?
but you cannot disable firebug from the browser through your file
Source: https://habr.com/ru/post/1387368/More articles:How to change exponential number format to floating point format in Perl - perlDebugging Next Steps in a Client Environment - debuggingSQL by selecting adjacent rows for a neighboring set - sqlHow to get the last n Treemap elements - javaDisabling Linux memory overload inside the application - cAndEngine input error: Delivered pTextureAtlasSource must not exceed texture borders - androidHow to implement file upload using Spring MVC in Java? - javaHow to create your own text using the Inline Translation tool in Magento Enterprise - phpBest practice: should bi-directional relationships be avoided? - language-agnosticLoad an object from a view in JPA / Hibernate - javaAll Articles