如何在第一次运行greasemonkey脚本时运行一个函数?
答案 0 :(得分:2)
您可以使用GM_setValue
和GM_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