FixUncachedBattles

Fix for the uncached battles problems while browsing battlelogs in warring factions game.

  1. // ==UserScript==
  2. // @name FixUncachedBattles
  3. // @namespace by guardian
  4. // @description Fix for the uncached battles problems while browsing battlelogs in warring factions game.
  5. // @include *.war-facts.com/battle_history.php?battle=*
  6. // @version 1
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10.  
  11. links = document.evaluate("//a[@href]",
  12. document,
  13. null,
  14. XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
  15. null);
  16.  
  17. for (var i=0;i<links.snapshotLength;i++) {
  18. var thisLink = links.snapshotItem(i);
  19.  
  20. thisLink.href = thisLink.href.replace('/admin/uncached.php?',
  21. '/battle_history.php?');
  22. }