首次运行Greasemonkey脚本时执行函数

时间:2009-11-11 11:02:45

标签: javascript greasemonkey

如何在第一次运行greasemonkey脚本时运行一个函数?

1 个答案:

答案 0 :(得分:2)

您可以使用GM_setValueGM_getValue来存储设置等。

尝试“获得”一面旗帜。如果未设置,请进行首次运行调用,然后设置该值。例如

var isfirstrun = GM_getValue('firstrun', '0');
if (isfirstrun == '0')
{
    // value not set, so must be the first run
    DoSomething();
    GM_setValue('firstrun', '1');
}

文档为here