我的 Thunderbird 插件包含一个 help.html 文件,可以从首选项窗格中打开。这是代码:
<label value="Open help window"
onclick="window.open('chrome://foo/locale/help.html', 'Help', 'chrome');"
class="text-link"/>
在 Windows 下,HTML 显示正常,但在 MacOS 下,背景是透明的。此外,该链接仅打开一次。
如何从 Thunderbird 首选项窗格正确打开本地文本?我的插件没有其他窗口(它是一个上下文菜单)。
谢谢你。