By Bean
—
Last update
Jun 28, 2007
—
Installed
3,503 times.
// ==UserScript==
// @name Orkut Scrap All Addon
// @namespace http://orkutaddons.blogspot.com/
// @description Adds Scrap All Button for easy use of Scrap All Script.
// @include http://orkut.com/*
// @include http://*.orkut.com/*
// @exclude http://orkut.com/GLogin.aspx
// @exclude http://*.orkut.com/GLogin.aspx
// ==/UserScript==
// Variables declared
var headerHTMLModified;
var headerMenu = document.getElementById("headerMenu");
var headerHTML = headerMenu.innerHTML;
// Modification of the header with the Scrap All link
headerHTMLModified = headerHTML + ' | <a href="http://www.orkut.com/orkutaddons" target="_blank">Scrap All</a>';
headerMenu.innerHTML = headerHTMLModified;