Tiny Chrome extension that removes the backdrop-filter: blur() applied to the YouTube video element. Workaround for blurry video playback on Chrome's D3D11 backend with some AMD drivers — D3D9 renders fine, D3D11 looks soft until the blur filter is neutralized.
- Clone or download this repo.
- Open
chrome://extensions. - Enable Developer mode.
- Click Load unpacked and select this folder.
- Reload any open YouTube tabs.
Injects one CSS rule on *.youtube.com and *.youtube-nocookie.com:
video.html5-main-video {
backdrop-filter: blur(0px) !important;
}That's the whole extension. No JS, no permissions beyond the matched hosts.
Fix surfaced by Reddit users debugging blurry YouTube playback on AMD GPUs under Chrome's D3D11 renderer.