tags:

views:

143

answers:

1

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?

A: 

Try unsetting it by setting it with a blank value:

GM_setValue(name, '')

If that doesn't work:

random