LoginSignup
0
1

【ブラウザ拡張機能】Reactサイトに外部からHTMLタグを挿入する

Posted at

事象

Chrome拡張機能にて、Reactを使用しているサイトに対し 下記のようにHTMLコードを直書きしたところ、

root.innerHTML += new_HTML

そのサイトの更新が停止した。

解決手法

innerHTML書き込みでは、 Reactのレンダリングが機能しない

appendChildで解決される。

root.appendChild(new_tag)

これで ページ乗っ取りの王、ページ乗っ取りキングですね。

0
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1