From a58bec2ebbf8c66c3f5be018d7cd6f4e07cd76ea Mon Sep 17 00:00:00 2001 From: Ajay Date: Tue, 16 Dec 2025 21:33:56 -0500 Subject: [PATCH 1/2] Fix chapter text sometimes being hidden --- src/js-components/previewBar.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js-components/previewBar.ts b/src/js-components/previewBar.ts index c4ad8a0b1..a90cc73dc 100644 --- a/src/js-components/previewBar.ts +++ b/src/js-components/previewBar.ts @@ -950,7 +950,7 @@ class PreviewBar { chapterButton.disabled = false; } - const chapterTitle = chaptersContainer.querySelector(".ytp-chapter-title-content") as HTMLDivElement; + const chapterTitle = chaptersContainer.querySelector(".ytp-chapter-title-content:not(.sponsorChapterText)") as HTMLDivElement; chapterTitle.style.display = "none"; const chapterCustomText = (chapterTitle.parentElement.querySelector(".sponsorChapterText") || (() => { From 3974231895d053383ee6b41f6c0ae851b3f46c01 Mon Sep 17 00:00:00 2001 From: Ajay Date: Tue, 16 Dec 2025 21:34:05 -0500 Subject: [PATCH 2/2] bump version --- manifest/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest/manifest.json b/manifest/manifest.json index 15f019f80..6c8c99f8d 100644 --- a/manifest/manifest.json +++ b/manifest/manifest.json @@ -1,7 +1,7 @@ { "name": "__MSG_fullName__", "short_name": "SponsorBlock", - "version": "6.1.1", + "version": "6.1.2", "default_locale": "en", "description": "__MSG_Description__", "homepage_url": "https://sponsor.ajay.app",