Well, let me teach you a trick to you do not need an extension to "see" the elements if is that you want.
You can paste it in the console of the developer mode. It will create an mouse event that will capture the tag which you mouse over, then outline it with random color:
document.addEventListener("mouseover", function(e){
e.fromElement.style.outline = "";
e.toElement.style.outline =
'1px solid rgb(' +
Math.floor(Math.random()*256) + ',' +
Math.floor(Math.random()*256) + ',' +
Math.floor(Math.random()*256) + ')';
})
This one is more interesting because it leaves a trail of edges:
javascript:document.addEventListener("mouseover", function(e){
e.path.forEach(function(i){
i.style.outline=
'1px solid rgb(' +
Math.floor(Math.random()*256) + ',' +
Math.floor(Math.random()*256) + ',' +
Math.floor(Math.random()*256) + ')';
})
});
document.addEventListener("mouseout", function(e){
e.path.forEach(function(i){
i.style.outline="";
})
});
A best trick is to create a false favorite, and then edit it adding javascript:
before the code.