Is there any possibility using javascript to block the favicon of a webpage ?
I can change it, but I'm not able to find a way to block the original one. Is it possible ?
I tried this, without success :
var newLink = document.createElement("link");
newLink.setAttribute("rel", "icon");
newLink.setAttribute("href", "###");
document.querySelector("head").appendChild(newLink);
Thank you for your help !