Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

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 έχουν αυτό το πρόβλημα
  • 4 προβολές
  • Τελευταία απάντηση από 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.

Όλες οι απαντήσεις (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();}})();

Τροποποιήθηκε στις από το χρήστη cor-el