// ==UserScript== // @name BB/HTML Code Inventory List Generator // @description Generates a bbcode of list your inventory excluding frozen, soulbound, equiped items. This make it easer to sell a ton of stuff in the Gaia Exchange. Also generates HTML code for http://www.tektek.org/gaia/worth.php (excludes frozen and soulbound items) // @include http://www.gaiaonline.com/inventory/view/* // @include http://www.gaiaonline.com/inventory/ // @include http://www.gaiaonline.com/inventory // @include http://gaiaonline.com/inventory/view/* // @include http://gaiaonline.com/inventory/ // @include http://gaiaonline.com/inventory // @version 0.0.1.20140525024110 // @namespace https://greasyfork.org/users/2178 // @downloadURL https://update.greasyfork.icu/scripts/1640/BBHTML%20Code%20Inventory%20List%20Generator.user.js // @updateURL https://update.greasyfork.icu/scripts/1640/BBHTML%20Code%20Inventory%20List%20Generator.meta.js // ==/UserScript== function getId(id){ return document.getElementById(id); } function genBbList(){ var ele=getId('all').parentNode.getElementsByClassName('item-list'); for (var i=0;i'; break; } } text+=''+t.alt+''+s+''+'\n';*/ text+='
  • '+t.parentNode.innerHTML+'
  • '; s=''; } var box=getId('genlist'); box.value=text; box.style.height=getId('all').parentNode.offsetHeight-9+'px'; getId('genlist2').style.display='none'; getId('GM_Note').style.display='none'; text=null; } getId('right').innerHTML='
    Code for posting your invintory
    BB CodeHTML Code<-Refresh->

    Part 2 (will not fit in 1 post)'; getId('GM_Reload_Blnk').addEventListener("click", genBbList, false); getId('GM_Reload_Hlnk').addEventListener("click", genHtmList, false); //getId('items_tabview').addEventListener('DOMSubtreeModified',genBbList,false); genBbList();