简介
该函数用于删除一个已经储存的值。
如果你需要寻找如何设定值,请参见
语法
返回
undefined
例子
删除一个叫做 foo 的值。
- GM_deleteValue("foo");
删除指定数组外的数据外的值
- var GM_removeAndKeep = function (arrKeysToKeep) {
- if (!arrKeysToKeep instanceof Array)
- // 不是合法的数组参数
- return ;
- GM_listValues().forEach (function (key) {
- if (arrKeysToKeep.indexOf (key) == -1) {
- // 不需要保留,删掉
- GM_deleteValue (key);
- }
- });
- };
- // 删除 config、cache 外的数据
- GM_removeAndKeep (['config', 'cache']);