随笔 - 1  文章 - 0  trackbacks - 0
<2026年6月>
31123456
78910111213
14151617181920
21222324252627
2829301234
567891011

常用链接

留言簿

随笔档案

搜索

  •  

最新评论

    最近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 @ 2010-09-03 22:28 寻找无双 阅读(981) | 评论 (0)编辑 收藏
仅列出标题