Displays csv of links and their texts into dialog box.
Pretty rough but simple and does the job.
 -
                
                javascript:(function(){plop = new Array();for (var i = 0; i < document.links.length; i++) { l = document.links[i]; plop.push(l.href + ";" + l.text)};prompt(plop)})();
  
 -
                
                javascript:(function(){plop = new Array();for (var i = 0; i < document.links.length; i++) { l = document.links[i]; plop.push(l.href + ";" + l.text)};prompt(plop)})();