Gaia Watchlist Check All Expired

By sdfghjklkjhgfds sdfghjiuytr Last update Aug 27, 2009 — Installed 164 times.

There are 2 previous versions of this script.

// ==UserScript==
// @name           Gaia Watchlist Check All Expired
// @description    Fixes the check all box in the watch list and auto checks expired items.
// @include        http://www.gaiaonline.com/marketplace/watchlist
// @include        http://gaiaonline.com/marketplace/watchlist
// @include        http://www.gaiaonline.com/marketplace/watchlist/
// @include        http://gaiaonline.com/marketplace/watchlist/
// ==/UserScript==
var ex = document.getElementsByClassName('watchlist_rowEX');
for(var i=0;ex.length>i;i++){
	ex[i].getElementsByTagName('input')[0].checked=true;
}