自定义工具栏隐藏Firefox的问题


1

我在Firefox中创建了几个自定义工具栏,我隐藏了它们并关闭了Firefox。当我下次打开Firefox时,所有自定义工具栏都可见。为什么Firefox不记得自定义工具栏的隐藏设置,它会记住其他工具栏(如Yahoo或Google工具栏)的隐藏设置。

我怎么能默认隐藏它们?

Answers:


0

我相信你已经找到了这个问题的答案。所以这里是新的firefox扩展开发人员的答案:你应该使用document.persist()函数来保存属性的状态。

因此,如果您想保存工具栏的折叠attrubute值(比如工具栏的ID是“samplebar”),您应该写下:

document.persist("samplebar", "collapsed")

第二个参数是您要保存的属性名称。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.