-
-
Notifications
You must be signed in to change notification settings - Fork 218
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Google Chrome does not work #40
Comments
Yes Chrome stopped work |
Can confirm with VS Code |
Would this code help you guys? var devtools = function() {};
devtools.toString = function() {
if (!this.opened) {
alert("Opened");
}
this.opened = true;
}
console.log('%c', devtools);
// devtools.opened will become true if/when the console is opened It seems like it has worked for a lot of people in the past. |
Working for me, Google Chrome 91.0.4472.77 (latest build) |
@verone0001 How can that work? I'm on MSEdge and it doesn't. I've tested this code var devtools = function() {};
devtools.toString = function() {
test.textContent = 'opened';
}
setInterval(() => (
test.textContent = 'closed',
console.log('%c', devtools)
), 1000); on a page with a div |
I haven't tested it in any other browser, only followed the given steps for Chrome latest build. |
@ajmeese7 It doesn't work on Firefox either. So there's still no reliable way for cross-platform check. |
This library works fine for me on Firefox 96. |
Firefox and safari can be used normally, only in Google Chrome does not work
The text was updated successfully, but these errors were encountered: