为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Want to print Bookmarks with its URL

  • 3 个回答
  • 5 人有此问题
  • 3 次查看
  • 最后回复者为 cor-el

more options

I would like to print out my list of Bookmarks with the URL for each one.

I would like to print out my list of Bookmarks with the URL for each one.

被采纳的解决方案

See also:

If you want to print with indention then you can edit the HTML file and add this code just between the line with the meta tag and the title tag.

<style>
 dl > dt > dl { display: block; -moz-margin-start: 40px; }
 dl > dt > dl { margin-left:40px; }
</style>
定位到答案原位置 👍 1

所有回复 (3)

more options

Save this code as a Bookmarklet.
https://support.mozilla.org/en-US/kb/bookmarklets-perform-common-web-page-tasks

 javascript:(function(){var%20e=document.getElementsByTagName('a');for(var%20i=0;i<e.length;i++)e[i].innerHTML+=':%20'+e[i];})(); 

Export your bookmarks in HTML format.
https://support.mozilla.org/en-US/kb/export-firefox-bookmarks-to-backup-or-transfer

Then open that bookmarks.html file in Firefox, and run that bookmarklet.

Print that "page".

more options

The Bookmarks appeared in the 'html' file just as described - however I would like to also print out the associated URL. Is this possible?

more options

选择的解决方案

See also:

If you want to print with indention then you can edit the HTML file and add this code just between the line with the meta tag and the title tag.

<style>
 dl > dt > dl { display: block; -moz-margin-start: 40px; }
 dl > dt > dl { margin-left:40px; }
</style>

由cor-el于修改