从 Firefox 扩展管理主题
有没有办法根据某些标准从附加组件动态更改主题? 或者至少更改标题图片。
提前致谢,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于版本 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 thegeneral.skins.selectedSkin
preference to the theme's internal name. Otherwise set theextensions.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 itsisActive
property will become true. Otherwise you will need to restart Firefox.我知道偏好。无论如何,我设法使用以下方法解决了问题:
谢谢
I know preferences. Anyway I managed to solve the issue using:
THANKS