(silent)
| 277 | }, |
| 278 | |
| 279 | persist(silent) { |
| 280 | let data = {}; |
| 281 | data[PAGE_MONKEY_LOCAL_STORAGE_KEY] = JSON.stringify(this.cachedMonkeys); |
| 282 | data[ORDER_KEY] = JSON.stringify(this.cachedMonkeys.map(m => m.id)); |
| 283 | chrome.storage.local.set(data, () => { if (!silent) this.toast('已保存'); }); |
| 284 | }, |
| 285 | |
| 286 | markUnsaved() { this.editCM.unSaved = true; }, |
| 287 |