从 Firefox 扩展管理主题

发布于 2024-11-07 07:52:28 字数 56 浏览 1 评论 0原文

有没有办法根据某些标准从附加组件动态更改主题? 或者至少更改标题图片。

提前致谢,

Is there a way to change themes dynamically from an add-on based on some criteria?
Or at least change the header picture.

Thanks in advance,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

坏尐絯℡ 2024-11-14 07:52:28

对于版本 4 之前的 Firefox:

如果设置了 extensions.dss.enabled 首选项,请将 general.skins.selectedSkin 首选项设置为主题的内部名称。否则,将 extensions.lastSelectedSkin 首选项设置为主题的内部名称并重新启动 Firefox。注意:这是针对标准主题的,我不知道这是否适用于角色。

对于 Firefox 4 及更高版本:

附加组件管理器 并将其 userDisabled 属性设置为 false。如果它是一个 Persona,那么它将立即应用,并且它的 isActive 属性将变为 true。否则您将需要重新启动 Firefox。

For Firefox before version 4:

If the extensions.dss.enabled preference is set, set the general.skins.selectedSkin preference to the theme's internal name. Otherwise set the extensions.lastSelectedSkin preference to the theme's internal name and restart Firefox. Note: This is for standard themes, I don't know whether this applies to Personas.

For Firefox 4 and later:

Obtain a reference to the theme object from the Add-on Manager and set its userDisabled property to false. If it is a Persona, then it will apply instantly, and its isActive property will become true. Otherwise you will need to restart Firefox.

椒妓 2024-11-14 07:52:28

我知道偏好。无论如何,我设法使用以下方法解决了问题:

$toolbar=document.getElementById('navigator-toolbox'); $statusbar=document.getElementById('status-bar');     
$toolbar.style.setProperty('background-image',%img%, 'important'); $statusbar.style.setProperty('background-image', %img%, 'important');

谢谢

I know preferences. Anyway I managed to solve the issue using:

$toolbar=document.getElementById('navigator-toolbox'); $statusbar=document.getElementById('status-bar');     
$toolbar.style.setProperty('background-image',%img%, 'important'); $statusbar.style.setProperty('background-image', %img%, 'important');

THANKS

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文