I need to ask for a help with a code.
I just need to remove all display:none on the site I am on.
Is there any simple way to do it, please? THANKS
You can run this to find by style attribute and update the display property.
document.querySelectorAll("[style*='display: none']").forEach((elem) => {
elem.style.display = "block"
console.log(elem)
})