4

有没有办法将一些设置保存到本地计算机,而不是带有用户脚本的 cookie?

如果设置不是全局的,则很难制作适用于多个域的用户脚本。

来自评论:"I am using scriptish "

4

1 回答 1

13

当然,这很容易。Greasemonkey wiki记录了四种允许您处理保存值的方法,这些值可以是设置或您想要存储的任何其他内容:

您可能想查看主要 API页面以了解其他有用的方法,还有一个完整的元数据块文档页面。

这可能不起作用的唯一方法是在 Google Chrome 内容脚本中。不过有一些解决方案:除了您的用户脚本之外,您还可以使用Google Chrome GM_*用户脚本,或者您可以通过在用户脚本的开头包含此方法(来自Devine.me)使 GM_setValue 和 GM_getValue 方法可用:

if (!this.GM_getValue || (this.GM_getValue.toString && this.GM_getValue.toString().indexOf("not supported")>-1)) {
    this.GM_getValue=function (key,def) {
        return localStorage[key] || def;
    };
    this.GM_setValue=function (key,value) {
        return localStorage[key]=value;
    };
    this.GM_deleteValue=function (key) {
        return delete localStorage[key];
    };
}
于 2012-02-26T00:07:03.777 回答