Demonoid description length counter

By JoeSimmons Last update Dec 4, 2008 — Installed 115 times.
// ==UserScript==
// @name           Demonoid description length counter
// @namespace      http://userscripts.org/users/23652
// @description    Adds a box to show how many characters you've typed
// @include        http://www.demonoid.com/torrent_upload.php5
// @copyright      JoeSimmons
// ==/UserScript==

var box, counter;

if(/Must be \d+ characters or longer/.test(document.body.textContent)) {
box = document.evaluate("//textarea[@name='bb_box']", document, null, 9, null).singleNodeValue;
box.addEventListener("keyup", update, false);
window.addEventListener("load", update, false);

counter = document.createElement("div");
counter.textContent = box.value.length + " characters";
counter.setAttribute("style", "position:fixed; bottom:2px; left:2px; border:1px solid #000; color:#000; background-color:#fff; font:13px arial; padding:6px;");
document.body.appendChild(counter);
}

function update() {
counter.textContent = box.value.length + " characters";
}