I'm trying to insert some css and JS with an extension to prevent a DOM element from being painted onto the screen
I have tried webNavigation.onCommitted
event and injecting css/js as well as contentScripts.register
(w/ polyfill for chrome) with runAt: "document_start"
My code is definitely running, just too slow and the DOM element in question flashes into and out of existence.
Thank you