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
Currently the extension has to be kept open to finish the export. For big courses (ex: with 5000+ words) it takes a while and it's a bit annoying as we can't use our browser in the meantime (as this closes the extension). So it would be great if the whole run() including the .json parsing would happen in the background.
I tried to solve this by moving everything in popup.js (except the main document.addEventListener('DOMContentLoaded',...) ) into background.js but without any success (even when using chrome.runtime.onMessage to start the run()).
So I am sorry: for this one, I can only request the feature, and give you a little help to implement it.
The text was updated successfully, but these errors were encountered:
Currently the extension has to be kept open to finish the export. For big courses (ex: with 5000+ words) it takes a while and it's a bit annoying as we can't use our browser in the meantime (as this closes the extension). So it would be great if the whole
run()
including the .json parsing would happen in the background.I tried to solve this by moving everything in
popup.js
(except the maindocument.addEventListener('DOMContentLoaded',...)
) intobackground.js
but without any success (even when usingchrome.runtime.onMessage
to start therun()
).So I am sorry: for this one, I can only request the feature, and give you a little help to implement it.
The text was updated successfully, but these errors were encountered: