[Chrome]GreaseMonkey GM_getValue/GM_setValue

[Chrome]GreaseMonkey GM_getValue/GM_setValue
    最近Chrome更新到6.x时代,于是从FF转过来了。发现有些GreaseMonkey脚本因为其中有GM_getValue不能用,搜索下网络发现需要插入这些代码。
1  if  ( ! this .GM_getValue  ||   this .GM_getValue.toString().indexOf( " not supported " ) >- 1 ) {
2       this .GM_getValue = function  (key,def) {
3           return  localStorage[key]  ||  def;
4      };
5       this .GM_setValue = function  (key,value) {
6           return  localStorage[key] = value;
7      };
8  }

你可能感兴趣的:([Chrome]GreaseMonkey GM_getValue/GM_setValue)