(s)
| 36 | |
| 37 | const mgmapi = { |
| 38 | addStyle(s) { |
| 39 | let style = document.createElement("style"); |
| 40 | style.innerHTML = s; |
| 41 | document.documentElement.appendChild(style); |
| 42 | }, |
| 43 | async getValue(name, defaultVal) { |
| 44 | return await (typeof GM_getValue === "function" |
| 45 | ? GM_getValue |