Visual Changes
当前为
// ==UserScript==
// @name Stack Visuals
// @namespace lolwat.com
// @version 1.0
// @description Visual Changes
// @author GrumpyCrouton
// @match *://*.stackoverflow.com/*
// @match *://*.stackexchange.com/*
// @match *://*.superuser.com/*
// ==/UserScript==
document.onreadystatechange = function () {
if (document.readyState === "interactive") {
//body changes
$("body").css("background-color","#f4fff3");
$("#questions, #qlist-wrapper, #content").css("border-right", "1px solid #d6d9dc");
//question stats
$(".question-stats").addClass("community-bulletin");
$("<div class='bulletin-title'>Question Stats</div><hr>").prependTo(".question-stats");
$("#questions .cbt").remove();
}
}