diff options
Diffstat (limited to 'src/styles.ts')
| -rw-r--r-- | src/styles.ts | 14 | 
1 files changed, 14 insertions, 0 deletions
| 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 +	);  } | 
