GM.deleteValue: Difference between revisions
From GreaseSpot Wiki
Jump to navigationJump to search
m Added Greasemonkey Manual TOC widget |
m →Examples: Confirmed in trunk build to exec in this manner. |
||
Line 37: | Line 37: | ||
== Examples == | == Examples == | ||
<code><pre> | <code><pre> | ||
GM_deleteValue(" | GM_deleteValue("foo"); | ||
</pre></code> | </pre></code> | ||
Revision as of 08:57, 6 January 2009
Greasemonkey Manual |
Using Greasemonkey |
---|
Installing Scripts |
Monkey Menu |
Getting Help |
User Script Authoring |
Editing |
Environment |
API |
Description
This API method deletes an existing preference set by GM_setValue.
Syntax
GM_deleteValue( name )
- Value: Function
- Returns: undefined
- Compatibility: Greasemonkey Trunk
Parameters Properties name
- All properties are optional except name.
Properties
name
- Value: String
- Usage:
name = "PropertyName";
- Property name to delete.
Examples
GM_deleteValue("foo");