Is there a way to enable the Chrome's default right click context menu in sites that overrides it creating their own context menu? (Google applications, Youtube...)
I find it very useful to be able to right click to inspect the element rather than having to go to F12, select the magnifying glass and find the element I want to inspect.
I've been checking some Chrome extension such as:
None of them seem to work in a basic example such as this one.
//context menu for orders table
$(document).on("contextmenu", "body", function (event) {
//we won't show the default context menu
event.preventDefault();
$('#menu').dropdown('toggle')
//showing it close to our cursor
$('#menu').dropdown('toggle').css({
top: (event.pageY) + "px",
left: (event.pageX) + "px"
});
});