Is it possible to remove or disable \"Inspect Element\" context menu in Chrome App via Javascript?
I have searched through several forums but there are no definite a
In case it helps anyone, Inspect Element can be disabled for an individual element by adding the style pointer-events: none;
to it.
This is very useful if you have any elements that are purely for the purpose of aligning child elements that necessarily overlap a large area of more useful elements; it lets you prevent the aligner elements from responding to the Inspect Element command.