Orkut Scrapbook Deleter

By rahul286 Last update Jun 1, 2008 — Installed 14,816 times. Daily Installs: 10, 8, 5, 18, 16, 9, 9, 3, 12, 16, 10, 13, 30, 28, 7, 7, 10, 23, 21, 9, 10, 24, 28, 21, 27, 12, 22, 14, 10, 30, 15, 14
// ==UserScript==
// @name           Orkut Scrapbook Deleter
// @namespace    
http://www.devilsworkshop.org/2007/04/03/orkut-scrap-deleter-script-anti-flooding/
// @description    Cleans scrapbook too fast
// @include        http://www.orkut.*/Scrapbook.aspx*
// ==/UserScript==



window.addEventListener(
	'load',
	function() {
	
	if ( window.location.href.match("&pageSize=30") == ("&pageSize=30") ) {
			window.location.href = "javascript: _checkAll(document.scrapsForm,'scrapKeys', true); javascript: _singleDelete(function() {_submitForm(scrapsForm, 'delete')});"
		}
	else {
		window.location.href = "javascript:changePageSize('30');"
	}

	},
	true);