I\'m building a Chrome extension that does some UI injection using content scripts. The problem is that since every website is different and may try to screw around with the
That is why you should inject at document_end. You can do that by setting "run_at": "document_end" in the Content Script Manifest
document_end
"run_at": "document_end"