Extra caution is recommended when installing recently uploaded/updated scripts (read more)
Be sure you trust any scripts you install

anti - Ikariam PLUS






1 point
login to vote
sol-666 scriptwright
Posted Jul 19, 2008

if tou want we speek about modifications, post your comment here:
http://userscripts.org/scripts/show/29831

1 point
login to vote
realtebo scriptwright
Posted Jul 17, 2008

Can you remove the 'plus' sign from the four images of the man (military, etc...) and the link from top bar?

This is how You can do

Or you or sol-666

      // this one remove the plus
      
      var ricercaPiu = document.evaluate("//div[@id='advisors']//a[@class='plusteaser']",
      		document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
      
      for (var i = ricercaPiu.snapshotLength - 1; i >= 0; i--) {
      		var elm = ricercaPiu.snapshotItem(i);
      		elm.parentNode.removeChild(elm);
      }
      
      
      // this one remove the link at top for plus functions
      var ricercaLinkPlus = document.evaluate("//li[@class='premium']",
      		document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
      
      for (var i = ricercaLinkPlus.snapshotLength - 1; i >= 0; i--) {
      		var elm = ricercaLinkPlus.snapshotItem(i);
      		elm.parentNode.removeChild(elm);
      }
      
      

1 point
login to vote
sol-666 scriptwright
Posted Jul 15, 2008

why dit you use my code, I don't see any différences ??

original sources are here :
http://userscripts.org/scripts/show/29831

You could comment on this script if you were logged in.