sc28
sc28

Reputation: 475

Chrome disable dev tools?

Is there a command line option where I could launch chrome with the developer tools disabled? The scenario is this - I want to have an extension that will autofill info into forms, but if the form has a password field that the user shouldn't have, by opening up the dev tools and playing in the console it would be easy to discover, which is something I've been asked to prevent - is this possible?

Upvotes: 1

Views: 1087

Answers (2)

Maxim Kumpan
Maxim Kumpan

Reputation: 2625

The client should never-ever receive sensitive data that the user is not proven to be authorized to have.

And no, you cannot affect client-side applications. Chrome is not the only browser that has inspection tools.

Upvotes: 0

Mooseman
Mooseman

Reputation: 18891

Not possible. There is no such flag in Chrome.

From a security point, passwords should never be filled in by anybody other then the user himself.

Upvotes: 2

Related Questions