|
|
|
|
|
by jeethsuresh
2618 days ago
|
|
I took 5 minutes and wrote this as a userscript: // ==UserScript== // @name Remove HN Scores // @version 1 // @grant none // ==/UserScript== nodes = document.querySelectorAll(".score"); for (x = 0; x < nodes.length; x++) { nodes[x].remove()} |
|