1
如何在第一次運行grepmonkey腳本時運行函數?在第一次運行Greasemonkey腳本時執行函數
如何在第一次運行grepmonkey腳本時運行函數?在第一次運行Greasemonkey腳本時執行函數
您可以使用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