在chrome中,您可以将工具栏中的书签名称替换为其图标。可以在Firefox中做同样的事情吗?我希望所有书签都只显示收藏夹图标,以节省空间。
在chrome中,您可以将工具栏中的书签名称替换为其图标。可以在Firefox中做同样的事情吗?我希望所有书签都只显示收藏夹图标,以节省空间。
Answers:
有一个插件可以做到这一点,即“智能书签栏”:
https://addons.mozilla.org/zh-CN/firefox/addon/4072
您可以将其设置为从不显示名称或在鼠标悬停时显示它。
您可以很简单地从书签中删除文本,仅保留Favicon。
删除描述/标签的不利之处是您失去了书签的某些实用性,不能只在URL栏中键入其名称并找到它,如果图标丢失,书签将变得更难管理(例如,如果您移至另一台机器)。您只需隐藏即可,而无需安装任何附加组件或删除任何书签描述,即可做到这一点。
您可以userChrome.css
在Firefox配置文件文件夹中创建一个名为“ ”的文件。该文件可用于添加CSS规则以自定义Firefox的UI,包括隐藏这些标签。
在记事本中创建一个文本文件,其内容如下:
/*
* This file can be used to customize the look of Mozilla's user interface
* You should consider using !important on rules which you want to
* override default settings.
*/
/*
* Do not remove the @namespace line -- it's required for correct functioning
*/
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* set default namespace to XUL */
/* hide the bookmark toolbar icon labels */
toolbarbutton.bookmark-item>.toolbarbutton-text,toolbarbutton.bookmark-item>.toolbarbutton-multiline-text {
display: none !important;
}
将该文件另存为“ userChrome.css
”,然后将其保存到Chrome
Firefox配置文件文件夹中的文件夹中。这将位于普通Windows框上的以下位置之一,或在Mac / Linux上的等效位置:
Win XP:C:\ Documents and Settings \ * [YourLogin] \ Application Data \ Mozilla \ Firefox \ Profiles \ [randomtext] *。default \ chrome
在Vista上:C:\ Users \ * [YourLogin] \ AppData \ Roaming \ Mozilla \ Firefox \ Profiles \ [randomtext] *。default \ chrome
请注意,“ chrome
”文件夹或“ userChrome.css
”文件目前可能不在您的个人资料中,但如果当前尚不存在,则可以创建它们。MozillaZine上的更多信息:UserChrome.css,感谢@Andrew在评论中指出。
保存后,重新启动Firefox,您应该会发现您具有无标签的书签工具栏。
如果您想使用此文件设置其他示例,请打开userChrome-example.css
您应该在Chrome文件夹中看到的文件。
.bookmark-item[tag="_THETAG_"]
而不是.bookmark-item[label="_THELABEL_"]
?
toolbarbutton.bookmark-item>.toolbarbutton-text,toolbarbutton.bookmark-item>.toolbarbutton-multiline-text
...感谢您放弃编辑。