GM.deleteValue: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
m (added zero to version compat)
m (→‎Examples: Removed extra paren)
Line 36: Line 36:
== Examples ==
== Examples ==
<code><pre>
<code><pre>
GM_deleteValue("greasemonkey.scriptval.foo"));
GM_deleteValue("greasemonkey.scriptval.foo");
</pre></code>
</pre></code>



Revision as of 18:26, 14 November 2008

Template:Underscore


Description

This API method deletes an existing preference set by GM_setValue.

Examples | See Also | Notes

Syntax

GM_deleteValue( name )

Value: Function
Returns: undefined
Compatibility: Greasemonkey 0.8.1+
Parameters
Properties
name
  • All properties are optional except name.

top

Properties


name

Value: String
Usage: name = "PropertyName";
  • Property name to delete.

top | back

Examples

GM_deleteValue("greasemonkey.scriptval.foo");

top

See Also

top

Notes

top