163-comment-show-total

By LI Daobing Last update Sep 27, 2009 — Installed 80 times.

There are 1 previous version of this script.

// ==UserScript==
// @name           163-comment-show-total
// @namespace      http://userscripts.org/users/lidaobing
// @include        http://comment.*.163.com/*
// ==/UserScript==
//
function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

addGlobalStyle('div.repliesWrapper div.title div.text span.total {display:inline}');