Greasemonkey:取消设置变量

发布于 2024-07-29 06:55:50 字数 129 浏览 6 评论 0原文

这是一个困扰我一段时间的问题。

在 Greasemonkey 中,您可以使用 GM_getValue(name) 和 GM_setValue(name, value) 来存储持久变量。 我的问题是,如何“取消设置”变量?

This is a question that has been plaguing me for awhile.

In Greasemonkey you can use GM_getValue(name) and GM_setValue(name, value) to store persistent variables. My question is, how do I 'unset' a variable?

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

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

发布评论

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

评论(2

你是我的挚爱i 2024-08-05 06:55:50

GM_deleteValue 将取消由 GM_setValue 设置的值,
从 Greasemonkey 版本 0.8.20090123(2009 年 2 月 18 日)开始。

GM_deleteValue will unset a value set by GM_setValue,
starting with Greasemonkey version 0.8.20090123 (February 18th, 2009).

友欢 2024-08-05 06:55:50

尝试通过将其设置为空白值来取消设置:

GM_setValue(name, '')

如果这不起作用:

  • 转到 about:config
  • 删除条目
  • 重新启动 Firefox
  • 运行脚本

Try unsetting it by setting it with a blank value:

GM_setValue(name, '')

If that doesn't work:

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