Untitled
unknown
javascript
2 years ago
384 B
12
Indexable
// ==UserScript==
// @name remove scores
// @namespace Violentmonkey Scripts
// @match https://www.reddit.com/*
// @grant none
// @version 1.0
// @author No_Industry9653
// @description no more reddit vote scores
// ==/UserScript==
var scores=document.getElementsByClassName('score')
for(var i=0;i<scores.length;i++){
scores[i].style='display:none;'
}
Editor is loading...