BandcampEnhancementSuite
BandcampEnhancementSuite copied to clipboard
modify DOM before load
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);