ابحث في الدعم

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

How can I get Firefox to print a table of URLs associated with the page or selection being printed as is an option in Internet Explorer?

  • 1 (رد واحد)
  • 13 have this problem
  • 7 views
  • آخر ردّ كتبه cor-el

more options

In Internet Explorer, selecting 'File' and then 'Print' brings up a Print dialog box with two tabs. The second tab allows you to select the option to 'Print a table of Links' from the URLs encoded in the page or selection being printed. This is a very useful feature, and would make a nice addition to the outstanding features of Mozilla Firefox.

In Internet Explorer, selecting 'File' and then 'Print' brings up a Print dialog box with two tabs. The second tab allows you to select the option to 'Print a table of Links' from the URLs encoded in the page or selection being printed. This is a very useful feature, and would make a nice addition to the outstanding features of Mozilla Firefox.

All Replies (1)

more options

You can use a bookmarklet like this to see list of links in a Firefox tab (window) and print that list.

javascript:(function(){var links=document.links,info='',i,L;for(i=0;L=links[i];i++){info+=L.href+'<br>';}with(window.open().document){write(info);close();}})();


javascript:(function(){var links=document.links,info='',i,L;for(i=0;L=links[i];i++){info+='<a href="'+L.href+'">'+L.innerHTML+'</a><br>';}with(window.open().document){write(info);close();}})();


javascript:(function(){var links=document.links,info='',i,L;for(i=0;L=links[i];i++){info+=L.innerHTML+' : <a href="'+L.href+'">'+L.href+'</a><br>';}with(window.open().document){write(info);close();}})();

Modified by cor-el