Greasy Fork is available in English.

Image Wizard

Visual changes

Από την 13/06/2018. Δείτε την τελευταία έκδοση.

// ==UserScript==
// @name         Image Wizard
// @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();

    }
}