So I'm writing a Google Chrome extension and basically what I'm looking to do is to overlay a div over the current webpage as soon as a button is clicked in the popup.html file.
When I access the document.body.insertBefore method from within popup.html it overlays the div on the popup, rather than the current webpage. Do I have to use messaging between background.html and popup.html in order to access the web page's DOM? I would like to keep it as simple as possible and just do everything in popup.html if possible. And would rather use jQuery to access the DOM too.
Any help will be greatly appreciated!