Try using window loading events to trigger vectorization instead of tabs.onUpdated
#255
Labels
javascript
Requires work in primarily the JS language
tabs.onUpdated
#255
Currently, the vectorizer (though
visit.js
) listens for thetabs.onUpdated
event to trigger vectorization of each tab. Perhaps we could instead usewindow.onload
orwindow.addEventListener('load', ...)
. We will need to ensure that the occurrence of these events does indeed mean that our samples have finished loading everything we expect them to load. We should remember that we are not loading any Javascript in our frozen samples. Making this change may require some message passing betweenvisit.js
,background.js
, andcontentScript.js
.The text was updated successfully, but these errors were encountered: