Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG-nightly.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions manifest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export async function getManifest(opt: ManifestOptions): Promise<Manifest.WebExt
{
matches: ["*://*.twitch.tv/*"],
js: ["content.js"],
all_frames: true,
},
],
options_ui: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ watchEffect(() => {
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" }));
}
});
</script>
Expand Down