document.addEventListener('contextmenu', function (e) {
e.preventDefault()
e.stopPropagation()
e.returnValue = false
e.cancleBubble = true
})
No way?
Edit: document.oncontextmenu = null
does not work.
P.S. I cannot have the reference of the listener function since I am not the owner of the site preventing the context menu.