We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

搜索 | 用户支持

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

详细了解

Can I make a folder structure for FF bookmarks outside of firefox?

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

more options

I want to make about 100 bookmark folders for firefox bookmarks. Is there some way I can create the list in a word processing doc or spreadsheet and then import it into FF? It is a little time consuming in FF to make so many folders.

I want to make about 100 bookmark folders for firefox bookmarks. Is there some way I can create the list in a word processing doc or spreadsheet and then import it into FF? It is a little time consuming in FF to make so many folders.

所有回复 (5)

more options

You can import Bookmarks from an HTML File. If you export your bookmarks to HTML you can see the structure to work with, but it can be pared down quite a bit:


 <!DOCTYPE NETSCAPE-Bookmark-file-1>
 <H1>Bookmarks Menu</H1>
 <DL>
 <DT><A HREF="http://www.yahoo.com">Link in main Bookmarks menu</A>
 </DL>
 <DT><H3>SubFolder 1</H3>
 <DT><H3>SubFolder 2</H3>
 <DT><H3>SubFolder 3</H3>
 <DL>
 <DT><A HREF="http://www.yahoo.com">Link in Subfolder 3</A>
 </DL>
 <DT><H3>SubFolder 4</H3>
more options

additional information:

Firefox stores bookmarks in a single Sqlite file - places.sqlite; and HTML is a "transactional" file type in Firefox (used for importing and exporting bookmarks in a "common" format).

http://www.sqlite.org/

more options

Thank you! If I make it in a spreadsheet and export it to html, do I just add that coding to the front end of it? and how do I specify sub-sub folders? and sub-sub-sub folders? i.e. folders within folders within folders?

由haopengyou于修改

more options

I'm not sure exactly how the HTML would come out of a spreadsheet application, so your mileage may vary there.

The forum has sadly stripped the indentation out, which would make it easier to read how folders relate, so I've placed a further example with indentation and sub-sub-folders on PasteBin. Hopefully this clarifies how to create your own: http://pastebin.com/Gv8BBSgD

more options

A possibility is to use JavaScript in Firefox to create the main structure and edit that file.

Run the script as a bookmark or in the Scratchpad with an about:blank page in the current tab.

var head = '<!DOCTYPE NETSCAPE-Bookmark-file-1>';
var meta = '<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">';
var title = '<TITLE>Bookmarks</TITLE>';
var menu = '<H1>Bookmarks Menu</H1>';

var dls = '<DL>';
var dle = '</DL>';
var folder = '<DT><H3>Folder #</H3>';
var link = '<DT><A HREF="http://">Link #1 in Folder #2</A>';
var text = [];

var maxF = 100;
var maxL = 1;

text.push(head);
text.push(meta);
text.push(title);
text.push("");

text.push(menu);
text.push(dls);
text.push("");

for(var i=0; i<maxF; i++){
text.push(folder.replace(/#/, i+1));
text.push(dls);

for(var j=0; j<maxL; j++){ 
text.push(link.replace(/#1/, j+1).replace(/#2/, i+1));
}

text.push(dle);
text.push("");
}

text.push(dle);
text=text.join("\n");

var URI="data:text/html;charset=utf-8,";
location.href = URI + text;