Gaia Watchlist Check All Expired

Fixes the check all box in the watch list and auto checks expired items.

  1. // ==UserScript==
  2. // @name Gaia Watchlist Check All Expired
  3. // @description Fixes the check all box in the watch list and auto checks expired items.
  4. // @include http://www.gaiaonline.com/marketplace/watchlist
  5. // @include http://gaiaonline.com/marketplace/watchlist
  6. // @include http://www.gaiaonline.com/marketplace/watchlist/
  7. // @include http://gaiaonline.com/marketplace/watchlist/
  8. // @version 0.0.1.20140525024112
  9. // @namespace https://greasyfork.org/users/2178
  10. // ==/UserScript==
  11. var ex = document.getElementsByClassName('watchlist_rowEX');
  12. for(var i=0;ex.length>i;i++){
  13. ex[i].getElementsByTagName('input')[0].checked=true;
  14. }