Hi! This is my first time making a Firefox extension. I want to make an extension that hides Pinterest comments.
I followed an official tutorial and it works, but after I refresh the page, the comments appear again. What did I do wrong?
Here is my code:
document.querySelector("[data-test-id='description-content-container']").remove();
I looked at the source code of the Pinterest page and it seems that the comments are contained in a div with the attribute data-test-id
with the value description-content-container
.