Firefox(最新版)中是否有一种方法可以有多行书签而不是标准书签?我一直在寻找,但是一个与之前版本一起使用的扩展,不再有效(多行)。
答案 0 :(得分:0)
是的,这很简单,只需几步即可完成...
转到文件夹.../AppData/Roaming/Mozilla/Firefox/Profiles/YourProfile 并创建一个名为“chrome”的新文件夹(与 Chrome 浏览器无关)。
进入这个文件夹并在里面创建一个新的文本文件。将文件命名为“userChrome.css”(确保名称是 userChrome.css,而不是 userChrome.css.txt)。
将以下代码写入“userChrome.css”:
@-moz-document url-prefix("chrome://browser/content/browser.xhtml") {
#PersonalToolbar {
max-height: calc(20px * 3) !important;
}
#personal-bookmarks,
#PlacesToolbar,
#PlacesToolbar > hbox {
display: block;
}
#PersonalToolbar toolbarbutton {
min-height: 20px !important;
max-height: 20px !important;
}
#PlacesToolbarItems {
max-height:60px!important;
display: flex!important;
flex-wrap: wrap!important;
overflow-x: visible!important;
overflow-y: auto!important;
}
#PlacesToolbar,
#PersonalToolbar > scrollbar {
-moz-window-dragging: no-drag !important;
}
#PlacesToolbar #PlacesChevron {
display: none !important;
}}
重新启动浏览器。
在地址栏中输入“about:config”并按回车键。
然后输入'toolkit.legacyUserProfileCustomizations.stylesheets'
通过双击将默认值从“false”更改为“true”。
重新启动浏览器。
应该是这样。从现在开始,您的 .css 文件中的更改将显示在 Firefox 中。您可以使用 .css 文件中的 px 值来更改书签行的高度或它们之间的距离...