()
| 5 | |
| 6 | // 添加获取存储的昵称函数 |
| 7 | async function getNickname() { |
| 8 | const result = await chrome.storage.local.get('bookmarkProfileNickname'); |
| 9 | return result.bookmarkProfileNickname; |
| 10 | } |
| 11 | |
| 12 | // 添加设置昵称函数 |
| 13 | async function setNickname(nickname) { |
no outgoing calls
no test coverage detected