If your ad blocker can't deal with these, set z-index on the main content with a userstyle, so it stays on top. Then you might also want to use a css style to just make everything else invisible:
```
*:not(.videoContainer){
background-color: black!important;
color: black!important;
}
img {
display:none!important;
}
```