(code)
| 24 | } |
| 25 | |
| 26 | export function addJs(code) { |
| 27 | const script = document.createElement("script") |
| 28 | // const js = document.createTextNode(`(()=>{${code}})()`) |
| 29 | const js = document.createTextNode(code) |
| 30 | script.appendChild(js) |
| 31 | document.head.appendChild(script) |
| 32 | } |
| 33 | |
| 34 | export function setIcon(active: boolean) { |
| 35 | sendToBackground({ |
nothing calls this directly
no outgoing calls
no test coverage detected