最近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 }
posted on 2010-09-03 22:28
寻找无双 阅读(981)
评论(0) 编辑 收藏 引用