This code works, but the browser stops working correctly. So I fixed it with the following code for those who need it:
var nodos = document.querySelectorAll(‘*’);
for(var i = 0; i < nodos.length; i++) {
nodos[i].style.cursor = ‘default’;
nodos[i].style.pointerEvents = ‘auto’;
}