* 保存配置到存储
()
| 69 | * 保存配置到存储 |
| 70 | */ |
| 71 | function saveConfig() { |
| 72 | // 使用插件提供的存储API保存配置 |
| 73 | storage.setItem('local:config', JSON.stringify(config)).catch((error) => { |
| 74 | console.error('Failed to save config:', error); |
| 75 | }); |
| 76 | } |
no outgoing calls
no test coverage detected