orkut scrapbook enlarger

By Edward Chewtoy Last update Aug 10, 2006 — Installed 790 times.
// ==UserScript==
// @name            orkut scrapbook enlarger
// @namespace       http://userscripts.org/scripts/source/5087.user.js
// @description     Enlarges the textbox for posting in orkut scrapbooks
// @include         http://www.orkut.com/ScrapBook*
// ==/UserScript==
function RunScript() {
set_style_script(window.document,document.getElementById('scrapText'),"height: 130px;width: 850px;",null,null);
}; // Ends RunScript
window.addEventListener("load", function() { RunScript() }, false);
/*
 * Author: Edward Chewtoy
 * http://www.orkut.com/Home.aspx?xid=5837855081487293635
 * http://www.orkut.com/Community.aspx?cmm=9889968
 * comments welcome
 */

function set_style_script(doc, element, new_style) {
    element.setAttribute('style', new_style);
};

//.user.js