Orkut Message Deleter

By rahul286 Last update Oct 27, 2009 — Installed 5,085 times. Daily Installs: 0, 0, 3, 1, 1, 10, 8, 6, 11, 6, 4, 2, 8, 3, 11, 11, 13, 24, 11, 6, 1, 1, 1, 5, 2, 0, 6, 4, 5, 7, 7, 2

There are 2 previous versions of this script.

// ==UserScript==
// @name           Orkut Message Deleter
// @namespace      http://www.devilsworkshop.org/orkut-message-cleaner-script/
// @description    Cleans All Messages too fast
// @include        http://www.orkut.*/*Messages*
// ==/UserScript==

window.addEventListener(
     'load',
     function() {

	var msgnum = document.evaluate('//input[@type=\'checkbox\']', document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);

/* 	GM_log(msgnum.snapshotLength); */

	if( msgnum.snapshotLength > 0 )
		window.location.href = "javascript: _checkAll(document.forms['f'],'msgKeys', true); doMsgsAction('msgsDelete'); ";
     },
     true);