()
| 862 | } |
| 863 | |
| 864 | async function getPersistedSettings() { |
| 865 | const stored = await chrome.storage.local.get([...PERSISTED_SETTING_KEYS, ...LEGACY_AUTO_STEP_DELAY_KEYS]); |
| 866 | return buildPersistentSettingsPayload(stored, { fillDefaults: true }); |
| 867 | } |
| 868 | |
| 869 | async function getPersistedAliasState() { |
| 870 | try { |
no test coverage detected