跨会话处理 Firefox 扩展首选项

发布于 2024-11-09 00:25:16 字数 102 浏览 0 评论 0原文

我正在开发 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 技术交流群。

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

发布评论

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

评论(1

够运 2024-11-16 00:25:16

您可以使用 XPCOM 界面连接 Firefox 的首选项系统:

var prefs = Components.classes["@mozilla.org/preferences-service;1"]
                      .getService(Components.interfaces.nsIPrefService)
                      .getBranch("extensions.yourextension.");
prefs.setIntPref("yourPersistedValue", 42);

请参阅本文了解更多信息和代码示例。

或者,您可以使用 SQLite。请参阅此答案 了解详情。

You can use the XPCOM interfaces to Firefox' preferences system:

var prefs = Components.classes["@mozilla.org/preferences-service;1"]
                      .getService(Components.interfaces.nsIPrefService)
                      .getBranch("extensions.yourextension.");
prefs.setIntPref("yourPersistedValue", 42);

See this article for more information and code samples.

Alternatively, you can use SQLite. See this answer for details.

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