You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The complete file is loaded in the background script - so I'm not sure why it's stalling the main page - particularly since only a limited bit of data is passed back to that page. I need to spend some time making a simple extension that can isolate the problem.
In Beaker's case, there are some fundamental problems with its underlying RPC communication between the browser and the experimental APIs. I took a first stab at solving that here: pfrazee/pauls-electron-rpc#6. However, I would need to spend serious time on Beaker to solve this, taking time away from this project - which is more pressing for me at the moment.
The text was updated successfully, but these errors were encountered:
It appears that the background window and the renderer windows for web extensions share a thread - the messaging is completely async now. (And this works in the Electron app.)
Ok - so the workaround I have for now in the web extension is to use a content script on https://fraidyc.at/s/ that communicates with the background script. It appears that if I try to use a local chrome-extension:// index.html, it will freeze on this because it shares a VM with the background script.
So, this has unfortunately made #51 worse - but has made Fraidycat usable for me personally.
The complete file is loaded in the background script - so I'm not sure why it's stalling the main page - particularly since only a limited bit of data is passed back to that page. I need to spend some time making a simple extension that can isolate the problem.
In Beaker's case, there are some fundamental problems with its underlying RPC communication between the browser and the experimental APIs. I took a first stab at solving that here: pfrazee/pauls-electron-rpc#6. However, I would need to spend serious time on Beaker to solve this, taking time away from this project - which is more pressing for me at the moment.
The text was updated successfully, but these errors were encountered: