* 保存配置到存储
()
| 189 | * 保存配置到存储 |
| 190 | */ |
| 191 | function saveConfig() { |
| 192 | // 使用插件提供的存储 API 保存配置 |
| 193 | storage.setItem('local:config', JSON.stringify(config)).catch((error) => { |
| 194 | console.error('Failed to save config:', error); |
| 195 | }); |
| 196 | } |
| 197 | |
| 198 | /** |
| 199 | * 卸载悬浮球 |
no outgoing calls
no test coverage detected