From 4e2ad017e928a7ee22fcfe063f22d57201577283 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Fri, 8 May 2020 18:13:46 +0200 Subject: styles: Hide skip buttons --- src/styles.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/styles.ts b/src/styles.ts index 9d44e45..26d34ed 100644 --- a/src/styles.ts +++ b/src/styles.ts @@ -5,18 +5,32 @@ export function styles () { const stylesheet = style.sheet as CSSStyleSheet; + // "Back to Browse" button that appears when credits are minimised. stylesheet.insertRule( '.OriginalsPostPlay-BackgroundTrailer .BackToBrowse { visibility: hidden; }', stylesheet.cssRules.length ); + // Age rating. stylesheet.insertRule( '.player-view-childrens { visibility: hidden; }', stylesheet.cssRules.length ); + // "Watch Credits" button. stylesheet.insertRule( '[data-uia="watch-credits-seamless-button"] { visibility: hidden; }', stylesheet.cssRules.length ); + + // Skip buttons. + stylesheet.insertRule(` + a[aria-label="Skip Intro"], + a[aria-label="Skip Recap"], + a[aria-label="Next Episode"], + [data-uia="next-episode-seamless-button"] { + visibility: hidden; + }`, + stylesheet.cssRules.length + ); } -- cgit v1.2.3