// ==UserScript== // @name Prosper Forum Thread Finder // @namespace http://groovy.friedo.com/prosper/ // @description Finds Prosper forum threads which link to a given listing and inserts static links to them. // @include http://www.prosper.com/lend/listing.aspx?* // @include http://prosper.com/lend/listing.aspx?* // @include https://www.prosper.com/lend/listing.aspx?* // ==/UserScript== window.addEventListener("load", function(e) { var sQryStr = window.location.search; var sListingID = (sQryStr.split ("=", 2))[1]; var zTargetSpan = document.getElementById ('t1'); if (zTargetSpan) { var newdiv = document.createElement ('div'); newdiv.innerHTML = '

' + 'Prospers.org Wiki' + '
' + 'See related threads (if any)


' ; zTargetSpan.parentNode.insertBefore (newdiv, zTargetSpan); } }, false);