2009-11-11 110 views

回答

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

相關問題