Pesquisar no site de suporte

Evite golpes de suporte. Nunca pedimos que você ligue ou envie uma mensagem de texto para um número de telefone, ou compartilhe informações pessoais. Denuncie atividades suspeitas usando a opção “Denunciar abuso”.

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 resposta
  • 13 têm este problema
  • 4 visualizações
  • Última resposta de 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.

Todas as respostas (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();}})();

Alterado por cor-el em