この記事を三行にまとめると ショート動画終了時に自動でスクロールしたい なぜかloop属性が消えない timeupdateイベントを使って残り時間を見る manifest.json { "name": "shortscroll", "description": "ショート動画を連続再生する", "version": "1.0.0", "manifest_version": 3, "content_scripts": [{ "matches": ["*://www.youtube.com/*"], "js": ["script.js"] }] } ショート動画終了時に自動でスクロールする function autoScroll() { currentReel = document.querySelector('ytd-reel-video-renderer[is-active]'); cur