sabjorn / BandcampEnhancementSuite

A Chrome Extension providing extra functionality for Bandcamp
MIT License
40 stars 3 forks source link

modify DOM before load #137

Open sabjorn opened 1 year ago

sabjorn commented 1 year ago

it can be annoying to see the plugin modify the contents of a page after it has loaded. It may be possible to modify the DOM before the page is loaded.

from here:

function nodeInsertedCallback(event) {
  console.log(event);
};
document.addEventListener('DOMNodeInserted', nodeInsertedCallback);