Greasemonkey:取消设置变量
这是一个困扰我一段时间的问题。
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
GM_deleteValue
将取消由GM_setValue
设置的值,从 Greasemonkey 版本 0.8.20090123(2009 年 2 月 18 日)开始。
GM_deleteValue
will unset a value set byGM_setValue
,starting with Greasemonkey version 0.8.20090123 (February 18th, 2009).
尝试通过将其设置为空白值来取消设置:
如果这不起作用:
about:config
Try unsetting it by setting it with a blank value:
If that doesn't work:
about:config