()
| 190 | } |
| 191 | |
| 192 | async function pushKV() { |
| 193 | const kvMap = {}; |
| 194 | for (const k of ALL_KEYS) { |
| 195 | kvMap[k] = await GM_getValue(k, undefined); // iframe |
| 196 | } |
| 197 | reportKV(kvMap); |
| 198 | } |
| 199 | |
| 200 | function iLog(msg, type = '') { |
| 201 | reportLog({ msg, type, t: nowTime() }); |
no test coverage detected