Hide Negatively Voted Posts

Hides questions with a score of less than 0 from the front page

As of 2014-08-14. See the latest version.

// ==UserScript==
// @name           Hide Negatively Voted Posts
// @author         Cameron Bernhardt (AstroCB)
// @version        1.0.0
// @namespace      http://greasyforks.org/
// @description    Hides questions with a score of less than 0 from the front page
// @include        http://*.stackexchange.com/
// @include        http://stackoverflow.com/
// @include        http://meta.stackoverflow.com/
// @include        http://serverfault.com/
// @include        http://meta.serverfault.com/
// @include        http://superuser.com/
// @include        http://meta.superuser.com/
// @include        http://askubuntu.com/
// @include        http://meta.askubuntu.com/
// @include        http://stackapps.com/
// ==/UserScript==
var votes = document.getElementsByClassName("votes");
var questions = document.getElementsByClassName("question-summary narrow");

var counts = [];
for (var i = 0; i < votes.length; i++) {
	counts[i] = votes[i].children[0].children[0].innerHTML;
}

for (var i = 0; i < counts.length; i++) {
	if (parseInt(counts[i]) < 0) {
		questions[i].style.visibility = "hidden";
		questions[i].style.height = "0";
	}
}
长期地址
遇到问题?请前往 GitHub 提 Issues。