Greasy Fork is available in English.

百度知道显示踩数

try to take over the world!

// ==UserScript==
// @name         百度知道显示踩数
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://zhidao.baidu.com/question/*
// @grant        none
// @require      http://code.jquery.com/jquery-1.11.0.min.js
// ==/UserScript==
$(document).ready(function() {
    'use strict';

    $("span.evaluate-bad").each(function(){
        $(this).children("b.evaluate-num").text($(this).attr("data-evaluate"));
    });
});