I'm currently developing a chrome extension and I need to access all elements of this specific type: https://i.stack.imgur.com/sDZSI.png
I attempted the following but was unable to modify the CSS properties of these elements:
const nodeList = document.querySelectorAll(".titleCard-progress");
for (let i = 0; i < nodeList.length; i++) {
nodeList[i].style.visibility = "hidden";
}
Is there a way to retrieve all elements that are both of type "progress" and have the class "titleCard-progress"?