GM.deleteValue: Difference between revisions
From GreaseSpot Wiki
Jump to navigationJump to search
m →Examples: Removed extra paren |
m →Syntax: This function is not yet available to release distribution and should be referenced as such since it's now included in the GM manual api function list |
||
Line 13: | Line 13: | ||
:Value: Function | :Value: Function | ||
:Returns: undefined | :Returns: undefined | ||
:Compatibility: [[Version_history# | :Compatibility: [[Version_history#Trunk|Greasemonkey Trunk]] | ||
:{| cellpadding="5" style="border-style:solid; background:#FFFFE0;" | :{| cellpadding="5" style="border-style:solid; background:#FFFFE0;" |
Revision as of 20:26, 30 December 2008
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("greasemonkey.scriptval.foo");