デフォルトだと[[iframeタグ]]の中の[[DOM]]にはアクセスできない。[[manifest.json (Chrome Extension)|manifest.json]]の`content_scripts`に`"all_frames": true`を設定する。 ```json { "content_scripts": [ { "matches": ["<all_urls>"], "all_frames": true } ] } ```