如何让 Thunderbird 显示扩展的附件

Bra*_*uce 5 thunderbird attachments

Thunderbird 电子邮件客户端的最新更新在单独的面板下显示附件。我希望面板显示自动展开。

我怎么做?它似乎不在帮助文件或发行说明中。

gam*_*t13 7

右键单击附件窗格,然后单击“初始显示附件窗格”。

(该选项是在 Thunderbird v24 及更高版本中添加的。)


aar*_*bru 5

这种通过 UI 进行更改的功能已在较新版本中删除,但它仍然存在于 about:config 中(首选项 > 高级 > 常规 > 配置编辑器...)

设置mailnews.attachments.display.start_expandedtrue


San*_*eth 2

根据MozillaZine 上附件窗格重新设计的这篇文章,您可以将以下内容添加到 userChrome.css 以删除附件切换:

#attachmentView > [collapsed="true"] {
  visibility: visible !important;
}

#attachmentToggle {
  display: none !important;
}
Run Code Online (Sandbox Code Playgroud)

编辑:将文件名更正为 userChrome.css