跨会话处理 Firefox 扩展首选项
我正在开发 Firefox 扩展。我喜欢为用户提供一些选项,例如设置背景
颜色和其他。我需要为每个选项卡检索这些选项。我应该在哪里存储这些值?
我该如何解决这个问题?
I'm working on a firefox extention. I like to give some options for the user, like setting background
color and others. I need to retrive these options for each tabs. Where should i can store the values?
how can i get around this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 XPCOM 界面连接 Firefox 的首选项系统:
请参阅本文了解更多信息和代码示例。
或者,您可以使用 SQLite。请参阅此答案 了解详情。
You can use the XPCOM interfaces to Firefox' preferences system:
See this article for more information and code samples.
Alternatively, you can use SQLite. See this answer for details.