// la consola javascript suele abrirse con F12, copiar, pegar, ENTER: | |
[].slice.call(document.querySelectorAll("li.comment")) | |
.filter(x => x.querySelector("b.fn").innerText == "David B") | |
.forEach(x => x.style.display = 'none') | |
// Antonio (AKA "Un físico") | |
[].slice.call(document.querySelectorAll("li.comment")) | |
.filter(x => x.querySelector("b.fn").innerText == 'Antonio (AKA "Un físico")') | |
.forEach(x => x.style.display = 'none') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment