I want to prevent the user of my web application from accessing my client side data in webSQL and IndexedDB. I want to disable the developer tools in Google chrome browser. The user should not be able to access developer tools by right click or f12 or ctrl+shift+j or even by clicking on the wrench>more tools>develper tools. I want to disable this only in my application. How can I accomplish this? Please help Thanks in advance
Asked
Active
Viewed 4,715 times
0
-
1Using javascript, this is for sure not possible. – A. Wolff Jul 21 '16 at 10:06
-
WebSQL and IndexedDB should only be used for non-sensitive data, knowing that any visitors with web programming knowledge will be able to view it and change it (although if they change it and it messes up the intended functionality of the app, that's their fault of course). – Matt Browne Jul 21 '16 at 12:45
1 Answers
1
No you cannot do this.
The developer menu is on the client side and is provided by the user's browser.
Also the browser developer should have nothing to do with your server side database code, and if it does, you need some major restructuring.

Jayesh Chitroda
- 4,987
- 13
- 18