Our users should use Ctrl+Shift+J shortcut in web application.
We have tried Chrome switchers like ‘–disable-dev-tools’ but it not works in our scenario.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Disabling the developer tools is difficult but you can do it:
Open Chrome (Or Chromium).
Open the developer tools by pressing F12 and resize the developer tools panel by moving the splitter (Sounds strange, but trust me). You don’t have to do this if you are sure that you have resized it before.
Close all Chrome windows.
On Windows 7 open the file
C:\Users\YOUR USERNAME\AppData\Local\Google\Chrome\User Data\Default\Preferencesin your favourite text editor. On Linux the file is located at~/.config/chromium/Default/Preferences. On Windows XP it may be somewhere else. Don’t know.Search for
devtools. You will find a section which looks like this:"devtools": { "split_location": 256 }(That’s why I told you to change the panel size in step 2. When you don’t do this then this section does not exist and you have to create it manually somewhere.)
Change this section so it looks like this:
"devtools": { "disabled": true, "split_location": 256 }Save the file.
Start Chromium. Press F12. Nothing happens. Press Ctrl+Shift+J. Nothing happens. Right-click and try to select the Inspector. Doesn’t work.
Be happy.