From 34bb7fc16d83fdb8f79a626845767f561681292d Mon Sep 17 00:00:00 2001 From: Kento Nishi Date: Sun, 14 Jun 2026 00:45:42 -0400 Subject: [PATCH 1/3] hide html frame hosts --- src/stylesheets/page404.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/stylesheets/page404.css b/src/stylesheets/page404.css index ca7b930c..46f18f14 100644 --- a/src/stylesheets/page404.css +++ b/src/stylesheets/page404.css @@ -17,3 +17,9 @@ body { background-color: transparent !important; overflow: hidden !important; } + +html > :not(head):not(body) { + display: none !important; + visibility: hidden !important; + pointer-events: none !important; +} From 2cb46328cd42e3c16a019a65597a2b5088d3d9b8 Mon Sep 17 00:00:00 2001 From: Kento Nishi Date: Sun, 14 Jun 2026 00:45:52 -0400 Subject: [PATCH 2/3] key host hiding to bttv --- src/stylesheets/page404.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stylesheets/page404.css b/src/stylesheets/page404.css index 46f18f14..c8f6db07 100644 --- a/src/stylesheets/page404.css +++ b/src/stylesheets/page404.css @@ -18,7 +18,7 @@ body { overflow: hidden !important; } -html > :not(head):not(body) { +html > body.bttv-youtube ~ :not(head):not(body) { display: none !important; visibility: hidden !important; pointer-events: none !important; From 0a540d69d5a0974ca335310673b11dfdb507ebef Mon Sep 17 00:00:00 2001 From: Kento Nishi Date: Sun, 14 Jun 2026 00:46:04 -0400 Subject: [PATCH 3/3] narrow bttv host selector --- src/stylesheets/page404.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stylesheets/page404.css b/src/stylesheets/page404.css index c8f6db07..be9f534a 100644 --- a/src/stylesheets/page404.css +++ b/src/stylesheets/page404.css @@ -18,7 +18,7 @@ body { overflow: hidden !important; } -html > body.bttv-youtube ~ :not(head):not(body) { +html:has(> body > .hyperchat-root) > body.bttv-youtube ~ :not([id]):not([class]):empty { display: none !important; visibility: hidden !important; pointer-events: none !important;