(key, defaultValue = null)
| 148 | }; |
| 149 | |
| 150 | function getStorage(key, defaultValue = null) { |
| 151 | return chrome.storage.local |
| 152 | .get([key]) |
| 153 | .then((data) => data?.[key] ?? defaultValue); |
| 154 | } |
| 155 | |
| 156 | // ===================== bg script context ===================== |
| 157 | let cached = null; |
no test coverage detected