I need to create a Chrome Extension to manipulate the HTML on some pages.
Basically, what I need to do is to remove a <div class="feedmain">
inside a page. I'm currently able to remove that <div>
using the developer tools, but the element is obviously reloaded when I reload the page, so I would like to develop some extension that does this for me automatically.
So I would like to know if it is possible, and an overview of how it can be done in an extension.