Facebook Wall Text-Area Resizer

By wzub Last update Feb 24, 2008 — Installed 757 times. Daily Installs: 0, 0, 0, 3, 0, 2, 0, 1, 1, 1, 3, 4, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0
// ==UserScript==
// @name           Facebook Wall Text-Area Resizer
// @namespace      http://userscripts.org/users/34823
// @description    Resize all Facebook Wall text areas to make Wall posts easier to make
// @include        http://*.facebook.com/*
// ==/UserScript==


var wall = document.getElementById('wall_text');
if (wall) {
    wall.style.height = '170px';
}