GM.deleteValue: Difference between revisions
From GreaseSpot Wiki
Jump to navigationJump to search
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 |
m Added Greasemonkey Manual TOC widget |
||
Line 1: | Line 1: | ||
{{underscore|title=GM_deleteValue}} | {{underscore|title=GM_deleteValue}} | ||
__NOTOC__ | __NOTOC__ | ||
{{Greasemonkey Manual TOC}} | |||
== Description == | == Description == |
Revision as of 22:19, 30 December 2008
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("greasemonkey.scriptval.foo");