0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

トナカイ 一頭Advent Calendar 2024

Day 2

chrome-extensionをSPAプロダクトに適用する

Last updated at Posted at 2024-12-02

ミニマムコードサンプル

content_scriptをSPAプロダクトに対して使う際の困難

SPAプロダクトの場合、DOMContentLoadedやmanifest.jsonの"run_at": "document_end"ではDOM取得ができない。
マウントのタイミングにもよったり、useEffectで遅延する場合もある。

MutationObserverを使う

injection.js
/** MutationObserverを使う */
function AttachClass(mutationList) {
  for (const mutation of mutationList) {
    if (mutation.type === 'childList') {
      /** 対象のタグがあるか確かめる */
      const nodeList2 = document.querySelectorAll('tbody tr td');
      if (nodeList2.length) {
        console.log(nodeList2);
        for (const element of nodeList2) {
          /** 数回呼ばれるので、1回だけ実行されるようにする */
          if (element.textContent === 'santa' && !element.classList.contains('bgc-yellow')) {
            element.classList.add('bgc-yellow');
            console.log('Call Once');
          }
        }
      }
    }
  } 
};

const observer = new MutationObserver(AttachClass);
observer.observe(document.body, {
  childList: true,
  subtree: true,
});

0
0
0

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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?