Answers:
该切换自动换行的Firefox扩展可能为你工作。
about:config
。
这是用于将样式应用于您查看的所有网页。
Firefox用户配置文件文件夹-> Chrome-> userContent.css (如果此文件不存在,请复制userContent-example.css并重命名!
/*
* This file can be used to apply a style to all web pages you view
* Rules without !important are overruled by author rules if the
* author sets any. Rules with !important overrule author rules.
*/
这是用于自定义Mozilla的用户界面。
Firefox用户配置文件文件夹-> Chrome-> userChrome.css (如果不存在此文件,请复制userChrome-example.css并重命名!
/*
* 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.
*/
添加到底部:
pre { white-space: pre-wrap !important; }
保存文件。]
重新启动Firefox。适用于Firefox 26。
此答案的灵感来自@Travis的答案。
如果你只需要包装的纯文本文件,然后在菜单栏中单击View
→交通Page Style
→交通Wrap Long Lines
。此解决方案比纯文本文件的附件更干净,但嵌入HTML的文本更松散。
值得一提的是,Firefox 22(本文撰写时的当前目标)将引入一项新功能,以允许直接在浏览器中包装文本文件。有关预览,请参见Firefox中改进的纯文本处理,有关gory的详细信息,请参见Firefox bug 253564。