How to disable the WebView Debugging features #1793
-
In |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
There's no built-in API at present to disable this popup at present. You might be able to implement this functionality entirely in the web content; if your web page captures right click/F12 events, you can prevent the menu that allows the user to select "inspect element". This is how Google Docs and other web apps implement this functionality. |
Beta Was this translation helpful? Give feedback.
-
Yeah, it seems that js capturing is the solution. Thanks for helping :) |
Beta Was this translation helpful? Give feedback.
There's no built-in API at present to disable this popup at present.
You might be able to implement this functionality entirely in the web content; if your web page captures right click/F12 events, you can prevent the menu that allows the user to select "inspect element". This is how Google Docs and other web apps implement this functionality.