With Mellowtel, your users can share a fraction of their unused internet by using a transparent opt-in/out mechanism. Trusted partners access the internet through this network, and you get paid for it.
You're right. I didn't test it with Opera. Your suggestion fixes it.
In listener-helpers-SW.ts the function inside the listener is not async so it's not necessary. The functions setUpBackgroundListeners and setUpContentScriptListeners are declared async but they don't return a promise, we can remove await when calling them (in index.ts and start-stop-helpers.ts)
listener-helpers-SW.ts
the function inside the listener is not async so it's not necessary. The functionssetUpBackgroundListeners
andsetUpContentScriptListeners
are declared async but they don't return a promise, we can removeawait
when calling them (inindex.ts
andstart-stop-helpers.ts
)