From a96d25febdff646f7cb5ae9069f1e50031ba5312 Mon Sep 17 00:00:00 2001 From: Brady Holland Date: Fri, 17 Oct 2025 20:42:11 -0500 Subject: [PATCH 1/2] Fix: Allow injecting into iFrame embeds --- manifest.config.ts | 1 + src/site/twitch.tv/modules/chat/components/tray/ReplyTray.vue | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/manifest.config.ts b/manifest.config.ts index 3bf1d6bb..f9b83de8 100644 --- a/manifest.config.ts +++ b/manifest.config.ts @@ -60,6 +60,7 @@ export async function getManifest(opt: ManifestOptions): Promise { const msgIndex = thread.value.findIndex((m) => m.id === props.id); const msgElem = msgElems.value.at(msgIndex); if (msgElem) { - nextTick(() => msgElem.scrollIntoView()); + nextTick(() => msgElem.scrollIntoView({ block: "nearest", inline: "nearest" })); } }); From 8d5bb6dd121c7650c791db0660f11aa693deb885 Mon Sep 17 00:00:00 2001 From: Brady Holland Date: Fri, 17 Oct 2025 20:53:25 -0500 Subject: [PATCH 2/2] updated nightly changelog --- CHANGELOG-nightly.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG-nightly.md b/CHANGELOG-nightly.md index e8a268d8..28c0b443 100644 --- a/CHANGELOG-nightly.md +++ b/CHANGELOG-nightly.md @@ -1,3 +1,7 @@ +### 3.1.11.4000 + +- Added ability to inject into embeded versions of twitch chat + ### 3.1.11.3000 - Fixed an issue which led to some messages (like announcements) not displaying correctly