I am trying to write a Tampermonkey script appends HTML to the body, but for some reason, the HTML dialog appears in ads. Google Chrome's inspect element shows this:
#document
<!doctype html>
<html>
<body> <!-- Another Body Tag -->
...
</body>
</html>
As you can see, there is another body tag, so the dialog appears in it, too.
Is there a way to only target the main <body>
tag, and not those inside a #document
tag?