Isolating CSS for Chrome extension

前端 未结 4 1479
小鲜肉
小鲜肉 2021-01-02 21:39

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

4条回答
  •  粉色の甜心
    2021-01-02 22:41

    That is why you should inject at document_end. You can do that by setting "run_at": "document_end" in the Content Script Manifest

提交回复
热议问题