Firefox 将一些数据添加到简单存储中

发布于 2024-11-07 09:18:19 字数 232 浏览 0 评论 0原文

我正在学习如何制作 Firefox 扩展,并且完全感到困惑......所以我想我应该再次从基础开始。

您能否为我制作(或引导我创建)一个简单的骨架扩展,将“ryan”保存到 sqlite 存储中,以便即使在浏览器重新启动时也可以使用它?

从那里我想我可以开始修改它以运行仅存在于我脑海中的所有不同代码......并回答我自己的问题:))

谢谢! 瑞安

I am learning how to make firefox extensions and have gotten totally confused... so I thought I would start from the basics again.

Can you make me (or walk me through creating) a simple skeleton extension that saves "ryan" into sqlite storage, so that it is available even on the browser restart?

From there I think I can start modifying it to run all the different code that exists only in my head... and to answer my own questions :))

Thanks!
Ryan

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

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

发布评论

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

评论(1

梦醒灬来后我 2024-11-14 09:18:19

如果您使用 Addon SDK,这会更简单。

var storage = require("simple-storage").storage;
if (storage.name) {
  console.log (storage.name);
}
else {
  console.log ("Storing!");
  storage.name = "ryan";
}

这将输出“正在存储!”第一次运行时,随后运行“ryan”。

This is even simpler if you use the Addon SDK.

var storage = require("simple-storage").storage;
if (storage.name) {
  console.log (storage.name);
}
else {
  console.log ("Storing!");
  storage.name = "ryan";
}

This will output "Storing!" the first time it's run, and "ryan" subsequent times.

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