HTML in ORKUT forum`s

By Mr Nobody OUG Last update Dec 1, 2007 — Installed 1,190 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name                   HTML in ORKUT forum`s
// @namespace              HTML in ORKUT forum`s
// @description            Enable HTML even in ORKUT forums
// @include                http://www.orkut.com/*
// @author                 Mr.Nobody
// ==/UserScript==


doc=document.body.innerHTML ;
doc=doc.replace(/\&lt\;/g,'<');
doc=doc.replace(/\&gt\;/g,'>');
document.body.innerHTML = doc ;